Skip to content

Commit

Permalink
Merge pull request #588 from playframework/bump-jackson
Browse files Browse the repository at this point in the history
Bumps Jackson to 2.11.4
  • Loading branch information
mergify[bot] authored Mar 23, 2021
2 parents 5c16ffa + 23f69f9 commit b82b64d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ pullRequests.frequency = "@weekly"
updates.pin = [
// Play JSON should follow the Jackson version in Akka to avoid conflicts in Playframework
// https://github.com/akka/akka/blob/master/project/Dependencies.scala#L24
{ groupId = "com.fasterxml.jackson.core", version = "2.10." }
{ groupId = "com.fasterxml.jackson.datatype", version = "2.10." }
{ groupId = "com.fasterxml.jackson.core", version = "2.11." }
{ groupId = "com.fasterxml.jackson.datatype", version = "2.11." }
]

commits.message = "${artifactName} ${nextVersion} (was ${currentVersion})"
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ def specs2(scalaVersion: String) =
"org.specs2" %% "specs2-junit" % "4.10.6" % Test,
).map(_.withDottyCompat(scalaVersion))

val jacksonDatabindVersion = "2.10.5.1"
val jacksonVersion = "2.11.4"
val jacksonDatabindVersion = jacksonVersion

val jacksonDatabind = Seq(
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonDatabindVersion
)

val jacksonVersion = "2.10.5"
val jacksons = Seq(
"com.fasterxml.jackson.core" % "jackson-core",
"com.fasterxml.jackson.core" % "jackson-annotations",
Expand Down

0 comments on commit b82b64d

Please sign in to comment.