forked from anistal/anistal-akka-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
24 lines (20 loc) · 822 Bytes
/
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
name := "anistal-akka-cluster"
version := "0.1"
scalaVersion := "2.11.5"
enablePlugins(JavaAppPackaging)
maintainer := "Alvaro Nistal"
packageSummary := s"My akka cluster experiment"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.4.3",
"com.typesafe.akka" %% "akka-cluster" % "2.4.3",
"com.typesafe.akka" %% "akka-cluster-tools" % "2.4.3",
"com.typesafe.akka" %% "akka-http-experimental" % "2.4.3",
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % "2.4.3",
"com.typesafe.akka" %% "akka-stream" % "2.4.3",
"com.github.scopt" %% "scopt" % "3.4.0",
"org.json4s" %% "json4s-native" % "3.3.0",
"org.json4s" %% "json4s-ext" % "3.3.0",
"org.twitter4j" % "twitter4j-core" % "4.0.4",
"org.scalaj" %% "scalaj-http" % "2.2.1",
"net.debasishg" %% "redisclient" % "3.0"
)