Skip to content

Commit 3ea25cd

Browse files
committed
Upgrade to 3.2.0.RELEASE
1 parent add7b7f commit 3ea25cd

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

History.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## [Git master](https://github.com/cucumber/cucumber-jvm/compare/v1.1.1...master)
22

3+
* [Spring] Upgrade to 3.2.0.RELEASE (Aslak Hellesøy)
34
* [Core] Strip command line arguments in case people accidentally invoke `cucumber.api.cli.Main` with arguments that have spaces left and right. (Aslak Hellesøy)
45
* [Core] Implemented `DataTable.equals()` and `DataTable.hashCode()`. (Aslak Hellesøy)
56
* [Core] Support `DataTable.toTable(List<String[]>) and `DataTable.toTable(List<Map<String,String>>)` ([#433](https://github.com/cucumber/cucumber-jvm/issues/433), [#434](https://github.com/cucumber/cucumber-jvm/pull/434) Nicholas Albion, Aslak Hellesøy)

pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<outputDirectory>${project.build.directory}</outputDirectory>
2020
<gherkin.version>2.11.5</gherkin.version>
2121
<groovy.version>2.0.5</groovy.version>
22-
<spring.version>3.1.2.RELEASE</spring.version>
22+
<spring.version>3.2.0.RELEASE</spring.version>
2323
</properties>
2424
<licenses>
2525
<license>
@@ -107,6 +107,11 @@
107107
<artifactId>spring-tx</artifactId>
108108
<version>${spring.version}</version>
109109
</dependency>
110+
<dependency>
111+
<groupId>org.springframework</groupId>
112+
<artifactId>spring-context-support</artifactId>
113+
<version>${spring.version}</version>
114+
</dependency>
110115
<dependency>
111116
<groupId>com.google.inject</groupId>
112117
<artifactId>guice</artifactId>

spring/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@
3232
<artifactId>spring-tx</artifactId>
3333
<scope>provided</scope>
3434
</dependency>
35+
<dependency>
36+
<groupId>org.springframework</groupId>
37+
<artifactId>spring-context-support</artifactId>
38+
<scope>provided</scope>
39+
</dependency>
3540

3641
<dependency>
3742
<groupId>info.cukes</groupId>

0 commit comments

Comments
 (0)