-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathbuild.sbt
More file actions
31 lines (23 loc) · 761 Bytes
/
build.sbt
File metadata and controls
31 lines (23 loc) · 761 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
26
27
28
29
30
31
packageArchetype.java_application
organization := "org.akkatrading"
name := "akka-trading"
version := "1.0"
scalaVersion := "2.11.2"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
resolvers += "spray repo" at "http://repo.spray.io"
libraryDependencies ++= {
val akkaV = "2.3.6"
val sprayV = "1.3.1"
val sprayJsonV = "1.2.6"
val specs2V = "2.4.2"
Seq(
"io.spray" %% "spray-can" % sprayV,
"io.spray" %% "spray-json" % sprayJsonV,
"io.spray" %% "spray-client" % sprayV,
"io.spray" %% "spray-testkit" % sprayV % "test",
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"org.specs2" %% "specs2-core" % specs2V % "test"
)
}
Revolver.settings