-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
28 lines (23 loc) · 956 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 := "com.example"
version := "0.1"
scalaVersion := "2.11.6"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
libraryDependencies ++= {
val akkaV = "2.3.9"
val sprayV = "1.3.2"
Seq(
"io.spray" %% "spray-can" % sprayV,
"io.spray" %% "spray-http" % sprayV,
"io.spray" %% "spray-json" % sprayV,
"io.spray" %% "spray-routing" % sprayV,
"io.spray" %% "spray-json" % "1.3.2",
"io.spray" %% "spray-testkit" % sprayV % "test",
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"org.specs2" %% "specs2-core" % "2.3.11" % "test",
"com.twilio.sdk" % "twilio-java-sdk" % "6.0.1-edge",
"edu.stanford.nlp" % "stanford-corenlp" % "3.6.0",
"org.apache.commons" % "commons-lang3" % "3.4"
)
}
Revolver.settings