Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ See also the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CH
### Changed

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

### Deprecated

Expand Down
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ scalaVersion := scala213
// Library versions

val cucumberVersion = "7.0.0"
val jacksonVersion = "2.12.5"
val jacksonVersion = "2.13.0"
val mockitoScalaVersion = "1.16.42"
val junitVersion = "4.13.2"

Expand Down Expand Up @@ -75,8 +75,7 @@ lazy val cucumberScala = (projectMatrix in file("cucumber-scala"))
libraryDependencies ++= Seq(
"io.cucumber" % "cucumber-core" % cucumberVersion,
// Users have to provide it (for JacksonDefaultDataTableTransformer)
("com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion % Provided)
.cross(CrossVersion.for3Use2_13),
("com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion % Provided),
"junit" % "junit" % junitVersion % Test,
"io.cucumber" % "cucumber-junit" % cucumberVersion % Test,
("org.mockito" %% "mockito-scala" % mockitoScalaVersion % Test)
Expand Down
6 changes: 3 additions & 3 deletions docs/default_jackson_datatable_transformer.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ To use this optional transformer, you need to have Jackson Scala in your depende
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-scala_2.13</artifactId>
<version>2.12.0</version>
<version>2.13.0</version>
<scope>test</scope>
</dependency>
```

Or:
```sbt
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.12.0" % Test
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.13.0" % Test
```


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

## Add the transformer

Expand Down