Skip to content

Commit e3751eb

Browse files
committed
Scala tweaks. Closes #432, #462.
1 parent fb803e0 commit e3751eb

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

History.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* [Core] Bugfix: Generated regex for ? character is incorrect. ([#494](https://github.com/cucumber/cucumber-jvm/issues/494) Aslak Hellesøy)
44
* [Core] Improve readability with unanchored regular expressions ([#485](https://github.com/cucumber/cucumber-jvm/pull/485), [#466](https://github.com/cucumber/cucumber-jvm/issues/466) Anton)
55
* [Core] Throw exception when unsupported command line options are used. ([#482](https://github.com/cucumber/cucumber-jvm/pull/482), [#463](https://github.com/cucumber/cucumber-jvm/issues/463) Klaus Bayrhammer)
6+
* [Scala] Release cucumber-scala for the two most recent minro releases (currently 2.9.2 and 2.9.0) ([#432](https://github.com/cucumber/cucumber-jvm/issues/432), [#462](https://github.com/cucumber/cucumber-jvm/pull/462) Chris Turner)
67

78
## [1.1.3](https://github.com/cucumber/cucumber-jvm/compare/v1.1.2...v1.1.3) (2013-03-10)
89

pom.xml

+6-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@
1919
<outputDirectory>${project.build.directory}</outputDirectory>
2020
<gherkin.version>2.11.8</gherkin.version>
2121
<groovy.version>2.1.2</groovy.version>
22+
<!-- Keep in sync with scala/pom.xml and scala/scala_previous/pom.xml if minor versions are bumped. -->
23+
<scala.current.version>2.10.0</scala.current.version>
24+
<scala.previous.version>2.9.2</scala.previous.version>
25+
<!-- There is 3.1.3, but it requires at least mvn 3.0.4 which might still not be widely used. -->
26+
<scala-maven-plugin.version>3.1.0</scala-maven-plugin.version>
2227
<spring.version>3.2.2.RELEASE</spring.version>
2328
<spring.data.version>1.3.0.RELEASE</spring.data.version>
2429
<hibernate.version>4.2.0.Final</hibernate.version>
@@ -118,7 +123,7 @@
118123
</dependency>
119124
<dependency>
120125
<groupId>info.cukes</groupId>
121-
<artifactId>cucumber-scala_2.9.2</artifactId>
126+
<artifactId>cucumber-scala_2.9</artifactId>
122127
<version>${project.version}</version>
123128
</dependency>
124129
<dependency>

scala/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>org.scala-lang</groupId>
3232
<artifactId>scala-compiler</artifactId>
33-
<version>2.10.0</version>
33+
<version>${scala.current.version}</version>
3434
<scope>provided</scope>
3535
</dependency>
3636

@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>org.scala-lang</groupId>
4444
<artifactId>scala-library</artifactId>
45-
<version>2.10.0</version>
45+
<version>${scala.current.version}</version>
4646
<scope>test</scope>
4747
</dependency>
4848
<dependency>
@@ -62,7 +62,7 @@
6262
<plugin>
6363
<groupId>net.alchim31.maven</groupId>
6464
<artifactId>scala-maven-plugin</artifactId>
65-
<version>3.1.0</version>
65+
<version>${scala-maven-plugin.version}</version>
6666
<configuration>
6767
<!--encoding>UTF-8</encoding-->
6868
<excludes>

scala/scala_previous/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<version>1.1.4-SNAPSHOT</version>
99
</parent>
1010

11-
<artifactId>cucumber-scala_2.9.2</artifactId>
11+
<artifactId>cucumber-scala_2.9</artifactId>
1212
<packaging>jar</packaging>
13-
<name>Cucumber-JVM: Scala (2.9.2)</name>
13+
<name>Cucumber-JVM: Scala (2.9)</name>
1414

1515
<dependencies>
1616
<dependency>
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>org.scala-lang</groupId>
3232
<artifactId>scala-compiler</artifactId>
33-
<version>2.9.2</version>
33+
<version>${scala.previous.version}</version>
3434
<scope>provided</scope>
3535
</dependency>
3636

@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>org.scala-lang</groupId>
4444
<artifactId>scala-library</artifactId>
45-
<version>2.9.2</version>
45+
<version>${scala.previous.version}</version>
4646
<scope>test</scope>
4747
</dependency>
4848
<dependency>
@@ -70,7 +70,7 @@
7070
<plugin>
7171
<groupId>net.alchim31.maven</groupId>
7272
<artifactId>scala-maven-plugin</artifactId>
73-
<version>3.1.0</version>
73+
<version>${scala-maven-plugin.version}</version>
7474
<configuration>
7575
<!--encoding>UTF-8</encoding-->
7676
<excludes>

0 commit comments

Comments
 (0)