forked from adamw/reactmq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
24 lines (19 loc) · 724 Bytes
/
build.sbt
File metadata and controls
24 lines (19 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
organization := "com.reactmq"
name := "reactmq"
version := "0.1-SNAPSHOT"
scalaVersion := "2.11.4"
val akkaVersion = "2.3.6"
libraryDependencies ++= Seq(
// akka
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-persistence-experimental" % akkaVersion,
"com.typesafe.akka" %% "akka-cluster" % akkaVersion,
"com.typesafe.akka" %% "akka-contrib" % akkaVersion,
"com.typesafe.akka" %% "akka-stream-experimental" % "0.10",
// util
"com.typesafe.scala-logging" %% "scala-logging-slf4j" % "2.1.2",
"ch.qos.logback" % "logback-classic" % "1.1.2",
"org.scalatest" %% "scalatest" % "2.2.2" % "test",
"joda-time" % "joda-time" % "2.5",
"org.joda" % "joda-convert" % "1.7"
)