Skip to content

Commit 73c33a0

Browse files
renovate[bot]renovate-botgaeljw
authored
Update dependency com.fasterxml.jackson.module:jackson-module-scala to v2.12.0 (#152)
* Update dependency com.fasterxml.jackson.module:jackson-module-scala to v2.12.0 Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Gaël Jourdan-Weil <[email protected]>
1 parent e32563a commit 73c33a0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ See also the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CH
1212
### Added
1313

1414
- [Build] Setup formatting using `scalafmt`
15-
- [CI] Build & test on both JDK 8 and 11
15+
- [CI] Build & test on both JDK 8 and 11
16+
- [Build] Tested Jackson version is now 2.12.0
1617

1718
### Changed
1819

build.sbt

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

4141
val cucumberVersion = "6.9.0"
42-
val jacksonVersion = "2.11.3"
42+
val jacksonVersion = "2.12.0"
4343
val mockitoScalaVersion = "1.16.3"
4444
val junitVersion = "4.13.1"
4545

@@ -75,7 +75,6 @@ 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.core" % "jackson-databind" % jacksonVersion % Provided,
7978
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion % Provided,
8079
"junit" % "junit" % junitVersion % Test,
8180
"io.cucumber" % "cucumber-junit" % cucumberVersion % 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.11.0</version>
15+
<version>2.12.0</version>
1616
<scope>test</scope>
1717
</dependency>
1818
```
1919

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

2525

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

2828
## Add the transformer
2929

0 commit comments

Comments
 (0)