-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
49 lines (42 loc) · 1.4 KB
/
build.sbt
File metadata and controls
49 lines (42 loc) · 1.4 KB
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
name := "bigpanda"
version := "0.1.0-SNAPSHOT"
/* scala versions and options */
scalaVersion := "2.11.7"
// These options will be used for *all* versions.
scalacOptions ++= Seq(
"-deprecation"
,"-unchecked"
,"-encoding", "UTF-8"
,"-target:jvm-1.7"
// "-optimise" // this option will slow your build
)
scalacOptions ++= Seq(
"-Yclosure-elim",
"-Yinline"
)
javacOptions ++= Seq("-Xlint:unchecked", "-Xlint:deprecation")
val akkaVersion = "2.3.6"
val sprayVersion = "1.3.1"
/* dependencies */
libraryDependencies ++= Seq (
"com.github.nscala-time" %% "nscala-time" % "1.4.0"
// -- testing --
, "org.scalatest" %% "scalatest" % "2.2.2" % "test"
, "org.scalamock" %% "scalamock-scalatest-support" % "3.1.4" % "test"
// -- Logging --
,"ch.qos.logback" % "logback-classic" % "1.1.2"
// -- Akka --
,"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test"
,"com.typesafe.akka" %% "akka-actor" % akkaVersion
,"com.typesafe.akka" %% "akka-slf4j" % akkaVersion
,"com.typesafe.akka" %% "akka-stream-experimental" % "2.0.4"
// -- Spray --
,"io.spray" %% "spray-routing" % sprayVersion
,"io.spray" %% "spray-can" % sprayVersion
,"io.spray" %% "spray-httpx" % sprayVersion
,"io.spray" %% "spray-testkit" % sprayVersion % "test"
// -- Json --
,"org.json4s" %% "json4s-native" % "3.2.11"
,"com.typesafe.play" %% "play-json" % "2.4.0-M1",
"net.debasishg" %% "redisclient" % "3.0"
)