forked from inanna-malick/akka-streams-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
22 lines (17 loc) · 751 Bytes
/
build.sbt
File metadata and controls
22 lines (17 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name := "akka-reddit-wordcount"
version := "0.1.0 "
scalaVersion := "2.11.5"
val akkaVersion = "2.3.7"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-cluster" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-agent" % akkaVersion,
"com.typesafe.akka" % "akka-stream-experimental_2.11" % "1.0-M2",
"net.databinder.dispatch" %% "dispatch-core" % "0.11.2",
"net.databinder.dispatch" %% "dispatch-json4s-native" % "0.11.2",
"com.google.protobuf" % "protobuf-java" % "2.5.0",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.4.2",
"org.scalaz" %% "scalaz-core" % "7.1.0"
)
scalacOptions ++= Seq("-feature")