-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
25 lines (20 loc) · 807 Bytes
/
build.sbt
File metadata and controls
25 lines (20 loc) · 807 Bytes
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
name := "proto-proxy"
version := "1.0"
scalaVersion := "2.11.6"
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
scalacOptions in Test ++= Seq("-Yrangepos")
libraryDependencies ++= {
val akkaV = "2.3.11"
val akkaStreamV = "1.0-RC3"
val playV = "2.4.0"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
"com.typesafe.akka" %% "akka-stream-experimental" % akkaStreamV,
"com.typesafe.akka" %% "akka-http-experimental" % akkaStreamV,
"com.typesafe.play" %% "play-json" % playV,
"org.slf4j" % "slf4j-api" % "1.7.9",
"org.apache.logging.log4j" % "log4j-to-slf4j" % "2.0.2",
"org.specs2" %% "specs2-core" % "3.6" % "test"
)
}