-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (21 loc) · 1000 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
name := "akka study"
version := "1.0"
scalaVersion := "2.10.2"
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")
EclipseKeys.createSrc := EclipseCreateSrc.Default + EclipseCreateSrc.Resource
EclipseKeys.withSource := true
resolvers ++= Seq(
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
"spray repo" at "http://repo.spray.io",
"spray repo Nightly" at "http://nightlies.spray.io")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.2.1",
"com.typesafe.akka" %% "akka-kernel" % "2.2.1",
"com.typesafe.akka" %% "akka-remote" % "2.2.1",
"com.typesafe.akka" %% "akka-slf4j" % "2.2.1",
"com.typesafe.akka" %% "akka-testkit" % "2.2.1" % "test",
"com.typesafe.akka" %% "akka-multi-node-testkit" % "2.2.1" % "test",
"org.scalatest" %% "scalatest" % "1.9.1",
"io.spray" % "spray-can" % "1.2-20130822",
"io.spray" % "spray-routing" % "1.2-20130822",
"io.spray" %% "spray-json" % "1.2.5")