Skip to content

Commit 99afdf3

Browse files
committed
Depend on Jackson 2.7.4-SNAPSHOT.
1 parent 2870828 commit 99afdf3

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

build.sbt

+9-7
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,18 @@ scalacOptions ++= (
3535
}
3636
)
3737

38+
val jacksonVersion = "2.7.4-SNAPSHOT"
39+
3840
libraryDependencies ++= Seq(
3941
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
40-
"com.fasterxml.jackson.core" % "jackson-core" % "2.7.3",
41-
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.7.3",
42-
"com.fasterxml.jackson.core" % "jackson-databind" % "2.7.3",
43-
"com.fasterxml.jackson.module" % "jackson-module-paranamer" % "2.7.3",
42+
"com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion,
43+
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonVersion,
44+
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
45+
"com.fasterxml.jackson.module" % "jackson-module-paranamer" % jacksonVersion,
4446
// test dependencies
45-
"com.fasterxml.jackson.datatype" % "jackson-datatype-joda" % "2.7.3" % "test",
46-
"com.fasterxml.jackson.datatype" % "jackson-datatype-guava" % "2.7.3" % "test",
47-
"com.fasterxml.jackson.module" % "jackson-module-jsonSchema" % "2.7.3" % "test",
47+
"com.fasterxml.jackson.datatype" % "jackson-datatype-joda" % jacksonVersion % "test",
48+
"com.fasterxml.jackson.datatype" % "jackson-datatype-guava" % jacksonVersion % "test",
49+
"com.fasterxml.jackson.module" % "jackson-module-jsonSchema" % jacksonVersion % "test",
4850
"org.scalatest" %% "scalatest" % "2.2.6" % "test",
4951
"junit" % "junit" % "4.11" % "test"
5052
)

0 commit comments

Comments
 (0)