-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
37 lines (30 loc) · 1.41 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
version := "0.1"
scalaVersion := "2.11.6"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
libraryDependencies ++= {
val akkaVersion = "2.3.6"
val sprayVersion = "1.3.2"
Seq(
"io.spray" %% "spray-can" % sprayVersion,
"io.spray" %% "spray-routing" % sprayVersion,
"io.spray" %% "spray-json" % sprayVersion,
"io.spray" %% "spray-testkit" % sprayVersion % "test",
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test",
"org.specs2" %% "specs2-core" % "2.3.11" % "test",
"com.typesafe.slick" %% "slick" % "3.0.0",
"ch.qos.logback" % "logback-classic" % "1.0.1",
"org.slf4j" % "slf4j-api" % "1.7.7",
"org.scalatest" % "scalatest_2.11" % "2.2.1" % "test",
"com.typesafe" % "config" % "1.2.1",
"postgresql" % "postgresql" % "9.1-901.jdbc4",
"com.h2database" % "h2" % "1.4.182",
"com.gettyimages" %% "spray-swagger" % "0.5.0",
"org.webjars" % "swagger-ui" % "2.0.12",
"com.github.t3hnar" %% "scala-bcrypt" % "2.4",
"org.mindrot" % "jbcrypt" % "0.3m"
)
}
fork in Test := false
parallelExecution in Test := false
Revolver.settings