-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
47 lines (29 loc) · 1.15 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
42
43
44
45
46
47
name := "book-search"
organization := "com.okorolenko"
version := "SNAPSHOT-1.0"
scalaVersion := "2.11.8"
scalacOptions ++= Seq(
"-target:jvm-1.8",
"-deprecation",
"-unchecked",
"-feature",
"-language:_"
// , "-Ylog-classpath"
)
libraryDependencies ++= {
val akkaVersion = "2.4.2"
val akkaStreamVersion = "2.0.3"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion withSources(),
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion withSources(),
"com.typesafe.akka" %% "akka-stream-experimental" % akkaStreamVersion withSources(),
"com.typesafe.akka" %% "akka-http-core-experimental" % akkaStreamVersion withSources(),
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaStreamVersion withSources(),
"ch.qos.logback" % "logback-classic" % "1.1.3",
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test" withSources(),
"org.scalatest" %% "scalatest" % "2.2.5" % "test" withSources()
//"com.typesafe.akka" % "akka-http-testkit-scala-experimental_2.11" % "1.0-RC2" withSources()
//"com.typesafe.akka" %% "akka-multi-node-testkit" % akkaVersion % "test",
)
}
//fork in run := true