Skip to content

Commit 9159702

Browse files
committed
chore: 🤖 Target Jackson 2.13
1 parent f142d18 commit 9159702

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

‎CHANGELOG.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ See also the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CH
1414
### Changed
1515

1616
- [Build] Upgrade Scala to 2.12.14, 2.13.6 and 3.0.2
17+
- [Scala] Upgrade `jackson-module-scala` to 2.13.0
1718

1819
### Deprecated
1920

‎build.sbt‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ scalaVersion := scala213
3939
// Library versions
4040

4141
val cucumberVersion = "7.0.0"
42-
val jacksonVersion = "2.12.5"
42+
val jacksonVersion = "2.13.0"
4343
val mockitoScalaVersion = "1.16.42"
4444
val junitVersion = "4.13.2"
4545

@@ -75,8 +75,7 @@ lazy val cucumberScala = (projectMatrix in file("cucumber-scala"))
7575
libraryDependencies ++= Seq(
7676
"io.cucumber" % "cucumber-core" % cucumberVersion,
7777
// Users have to provide it (for JacksonDefaultDataTableTransformer)
78-
("com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion % Provided)
79-
.cross(CrossVersion.for3Use2_13),
78+
("com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion % Provided),
8079
"junit" % "junit" % junitVersion % Test,
8180
"io.cucumber" % "cucumber-junit" % cucumberVersion % Test,
8281
("org.mockito" %% "mockito-scala" % mockitoScalaVersion % Test)

‎docs/default_jackson_datatable_transformer.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ To use this optional transformer, you need to have Jackson Scala in your depende
1212
<dependency>
1313
<groupId>com.fasterxml.jackson.module</groupId>
1414
<artifactId>jackson-module-scala_2.13</artifactId>
15-
<version>2.12.0</version>
15+
<version>2.13.0</version>
1616
<scope>test</scope>
1717
</dependency>
1818
```
1919

2020
Or:
2121
```sbt
22-
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.12.0" % Test
22+
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.13.0" % Test
2323
```
2424

2525

26-
The current version of Cucumber Scala has been tested against Jackson Module Scala **version 2.12.0**.
26+
The current version of Cucumber Scala has been tested against Jackson Module Scala **version 2.13.0**.
2727

2828
## Add the transformer
2929

0 commit comments

Comments
 (0)