Skip to content

Commit

Permalink
Override Jackson Databind dependency to 2.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ennru committed Jun 27, 2019
1 parent 4d8463a commit bf4c399
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ object Dependencies {
.map("org.apache.geode" % _ % GeodeVersion exclude ("org.slf4j", "slf4j-log4j12")) ++
Seq(
"com.chuusai" %% "shapeless" % "2.3.3",
// overriding version from geode to avoid some security vulnerabilities
"com.fasterxml.jackson.core" % "jackson-databind" % "2.9.9",
"org.slf4j" % "log4j-over-slf4j" % slf4jVersion % Test // MIT like: http://www.slf4j.org/license.html
)
)
Expand Down Expand Up @@ -265,7 +267,9 @@ object Dependencies {
val JsonStreaming = Seq(
libraryDependencies ++= Seq(
"com.github.jsurfer" % "jsurfer" % "1.4.3", // MIT,
"com.github.jsurfer" % "jsurfer-jackson" % "1.4.3" // MIT
"com.github.jsurfer" % "jsurfer-jackson" % "1.4.3", // MIT
// overriding version from jsurfer-jackson to avoid some security vulnerabilities
"com.fasterxml.jackson.core" % "jackson-databind" % "2.9.9"
)
)

Expand Down

0 comments on commit bf4c399

Please sign in to comment.