forked from dkristian/jerkson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
36 lines (26 loc) · 987 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
25
26
27
28
29
30
31
32
33
34
35
36
name := "jerkson"
organization := "com.codahale"
scalaVersion := "2.13.3"
version := "0.6.0"
val jacksonVersion = "2.11.3"
val jacksonDatabindVersion = jacksonVersion
libraryDependencies ++= Seq(
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonDatabindVersion,
"com.fasterxml.jackson.module" % "jackson-module-afterburner" % jacksonVersion,
"org.specs2" %% "specs2-core" % "4.10.3" % "test"
)
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value
resolvers += Resolver.sonatypeRepo("snapshots")
scalacOptions ++= Seq(
"-unchecked",
"-Ywarn-dead-code",
"-deprecation",
"-feature",
"-language:implicitConversions",
"-language:postfixOps",
"-language:higherKinds"
)
scalacOptions ++= Seq("-opt:l:inline", "-opt-inline-from:com.codahale.**")
scalacOptions in Test ++= Seq("-Yrangepos")