-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
69 lines (56 loc) · 3.05 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
resolvers += "spray" at "http://repo.spray.io/"
resolvers += "Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases"
resolvers += "Softprops Maven" at "http://dl.bintray.com/content/softprops/maven"
resolvers += "Spy" at "http://files.couchbase.com/maven2/"
scalaVersion := "2.11.7"
scalacOptions ++= Seq(
"-Xmax-classfile-name",
"242",
"-unchecked",
"-deprecation",
"-feature",
"-language:existentials",
"-language:postfixOps",
"-language:reflectiveCalls")
libraryDependencies ++= {
val akkaV = "2.3.11"
val sprayV = "1.3.3"
val scalatestV = "2.2.4"
val scalamockV = "3.2.2"
Seq(
"io.spray" %% "spray-can" % sprayV,
"io.spray" %% "spray-routing" % sprayV,
"io.spray" %% "spray-json" % "1.2.6",
"io.spray" %% "spray-client" % sprayV,
"com.netaporter" %% "pre-canned" % "0.0.6",
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-stream-experimental" % "2.0.3",
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
"org.slf4j" % "slf4j-api" % "1.7.7",
"ch.qos.logback" % "logback-classic" % "1.0.7",
"org.codehaus.janino" % "janino" % "2.6.1",
"io.spray" %% "spray-testkit" % sprayV ,
"org.scalatest" %% "scalatest" % scalatestV ,
"org.scalamock" %% "scalamock-scalatest-support" % scalamockV ,
"org.mockito" % "mockito-all" % "1.9.0",
"org.scalaj" %% "scalaj-http" % "1.1.5",
"joda-time" % "joda-time" % "2.8.1",
"org.json4s" %% "json4s-jackson" % "3.2.11",
"org.json4s" %% "json4s-ext" % "3.2.11",
"org.scalaz" %% "scalaz-core" % "7.1.3",
"com.bionicspirit" %% "shade" % "1.7.2",
"org.scala-lang.modules" %% "scala-pickling" % "0.10.1",
"net.jpountz.lz4" % "lz4" % "1.3.0",
"com.spotify" % "dns" % "3.0.1",
"me.lessis" %% "odelay-core" % "0.1.0",
"dnsjava" % "dnsjava" % "2.1.7",
"com.google.guava" % "guava" % "18.0",
"com.google.code.findbugs" % "jsr305" % "2.0.1",
"me.lessis" %% "retry" % "0.2.0"
)
}
javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
ScoverageSbtPlugin.ScoverageKeys.coverageMinimum := 82
ScoverageSbtPlugin.ScoverageKeys.coverageFailOnMinimum := true
ScoverageSbtPlugin.ScoverageKeys.coverageHighlighting := true
Revolver.settings