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
4 changes: 3 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ object Dependencies {
val playWS = groupId %% "play-ws" % exactPlayVersion
val playTest = groupId %% "play-test" % exactPlayVersion % Test

Seq(play, playWS, playTest, jackson)
Seq(play, playWS, playTest, jackson, jacksonDatabind)
}
}

Expand All @@ -48,4 +48,6 @@ object Dependencies {
// Play 3.0 is stuck on Jackson 2.14, which has 'high' vulnerabilities
val jackson = "com.fasterxml.jackson.core" % "jackson-core" % "2.22.0"

val jacksonDatabind = "com.fasterxml.jackson.core" % "jackson-databind" % "2.22.0"

}
2 changes: 2 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.5.0")

addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1")

addDependencyTreePlugin
Loading