-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.sbt
25 lines (22 loc) · 1.2 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
name := "Kafka, Akka HTTP and Akka Streams"
version := "1.0"
scalaVersion := "2.11.8"
libraryDependencies ++= {
val akka = "com.typesafe.akka"
val akkaV = "2.4.10"
val scalaTestV = "3.0.0"
Seq(
akka %% "akka-actor" % akkaV,
akka %% "akka-testkit" % akkaV % "test",
akka %% "akka-slf4j" % akkaV,
akka %% "akka-http-core" % akkaV,
akka %% "akka-http-experimental" % akkaV,
akka %% "akka-http-spray-json-experimental" % akkaV,
akka %% "akka-http-testkit" % akkaV,
akka %% "akka-stream-kafka" % "0.12",
"de.heikoseeberger" %% "akka-sse" % "1.10.0",
"ch.megard" %% "akka-http-cors" % "0.1.6",
"ch.qos.logback" % "logback-classic" % "1.1.7",
"org.codehaus.groovy" % "groovy" % "2.4.7"
)
}