forked from cdiniz/slick-akka-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
33 lines (29 loc) · 1.28 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
version := "0.0.1"
scalaVersion := "2.11.7"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
libraryDependencies ++= {
val akkaV = "2.4.2"
val sprayV = "1.3.3"
val slickV = "3.1.1"
Seq(
"com.typesafe.akka" %% "akka-http-experimental" % akkaV,
"com.typesafe.akka" %% "akka-http-core" % akkaV,
"com.typesafe.akka" %% "akka-http-testkit" % akkaV,
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaV,
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.github.swagger-akka-http" %% "swagger-akka-http" % "0.6.2",
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"org.specs2" %% "specs2-core" % "2.3.11" % "test",
"org.specs2" %% "specs2-mock" % "2.3.11" ,
"org.scalatest" % "scalatest_2.11" % "2.2.1" % "test",
"junit" % "junit" % "4.11" % "test",
"com.typesafe.slick" %% "slick" % slickV,
"com.typesafe.slick" %% "slick-hikaricp" % slickV,
"com.typesafe" % "config" % "1.2.1",
"com.h2database" % "h2" % "1.3.175",
"org.postgresql" % "postgresql" % "9.3-1100-jdbc41",
"com.typesafe.scala-logging" %% "scala-logging" % "3.1.0",
"ch.qos.logback" % "logback-classic" % "1.1.3",
"org.slf4j" % "slf4j-nop" % "1.6.4"
)
}