-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
24 lines (18 loc) · 1011 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name := "jackson-module-caseclass"
scalaVersion := "2.12.10"
val jacksonVersion = "2.9.8"
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
"com.fasterxml.jackson.module" % "jackson-module-paranamer" % jacksonVersion,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion,
// test dependencies
"com.fasterxml.jackson.datatype" % "jackson-datatype-joda" % jacksonVersion % "test",
"com.fasterxml.jackson.datatype" % "jackson-datatype-guava" % jacksonVersion % "test",
"com.fasterxml.jackson.module" % "jackson-module-jsonSchema" % jacksonVersion % "test",
"org.scalatest" %% "scalatest" % "3.0.6-SNAP3" % "test",
"junit" % "junit" % "4.12" % "test"
)
Test / classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat