-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
41 lines (32 loc) · 1.38 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
import NativePackagerKeys._
packageArchetype.java_application
name := """social-search"""
organization := "com.drwal"
version := "0.1"
scalaVersion := "2.11.2"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
resolvers ++= Seq(
"Spray repository releases" at "http://repo.spray.io/",
"Typesafe repository releases" at "http://repo.typesafe.com/typesafe/releases/"
)
libraryDependencies ++= {
val akkaV = "2.3.6"
val sprayV = "1.3.2"
Seq(
"io.spray" %% "spray-can" % sprayV,
"io.spray" %% "spray-routing" % sprayV,
"io.spray" %% "spray-caching" % sprayV,
"io.spray" %% "spray-testkit" % sprayV % "test",
"io.spray" %% "spray-client" % sprayV,
"io.spray" %% "spray-json" % "1.3.1",
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"org.reactivemongo" %% "reactivemongo" % "0.10.5.0.akka23",
"org.specs2" %% "specs2-core" % "2.3.11" % "test",
"org.mockito" % "mockito-all" % "1.9.5" % "test",
"ch.qos.logback" % "logback-classic" % "1.1.2",
"commons-codec" % "commons-codec" % "1.9"
)
}
Revolver.settings