forked from fpinscala-muc/akka-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
38 lines (31 loc) · 1.21 KB
/
build.sbt
File metadata and controls
38 lines (31 loc) · 1.21 KB
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
name := """akka-chat"""
version := "1.0"
scalaVersion := "2.11.6"
val akkaVersion = "2.3.9"
val akkaStreamHttpVersion = "1.0-M4"
libraryDependencies ++= Seq(
Library.akkaActor,
Library.akkaRemote,
Library.akkaPersistence,
Library.akkaSse,
Library.akkaTestkit % "test",
Library.scalaTest % "test",
Library.scalaCheck % "test",
"com.github.krasserm" %% "akka-persistence-kafka" % "0.3.4",
"com.typesafe.akka" %% "akka-http-core-experimental" % akkaStreamHttpVersion,
"com.typesafe.akka" %% "akka-http-experimental" % akkaStreamHttpVersion,
"com.typesafe.akka" %% "akka-http-java-jackson-experimental" % akkaStreamHttpVersion,
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaStreamHttpVersion,
"com.typesafe.akka" %% "akka-stream-experimental" % akkaStreamHttpVersion,
"com.typesafe.akka" %% "akka-stream-testkit-experimental" % akkaStreamHttpVersion,
"com.sclasen" %% "akka-kafka" % "0.1.0",
"junit" % "junit" % "4.12" % "test"
// "com.novocode" % "junit-interface" % "0.10" % "test"
)
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v")
resolvers ++= List(
Resolver.krasserm
// Resolver.hseeberger,
// Resolver.patriknw
)
EclipseKeys.withSource := true