-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (21 loc) · 836 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
organization := "co.cleancode"
version := "0.1"
scalaVersion := "2.10.4"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
EclipseKeys.withSource := true
resolvers += "spray" at "http://repo.spray.io/"
libraryDependencies ++= {
val akkaV = "2.1.4"
val sprayV = "1.1.1"
Seq(
"io.spray" % "spray-can" % sprayV,
"io.spray" % "spray-routing" % sprayV,
"io.spray" %% "spray-json" % "1.2.6",
"com.typesafe.slick" %% "slick" % "2.0.3",
"ch.qos.logback" % "logback-classic" % "1.1.2",
"org.postgresql" % "postgresql" % "9.2-1004-jdbc41",
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.github.t3hnar" %% "scala-bcrypt" % "2.4"
)
}
Revolver.settings