-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
26 lines (20 loc) · 1.11 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
26
name := "akka-cluster-singleton"
version := "1.0"
scalaVersion := "2.12.2"
resolvers += Resolver.typesafeRepo("releases")
resolvers += "Artima Maven Repository" at "http://repo.artima.com/releases"
libraryDependencies ++= Seq(
"org.scalactic" %% "scalactic" % "3.0.1",
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"com.typesafe.akka" %% "akka-actor" % "2.5.1",
"com.typesafe.akka" %% "akka-persistence" % "2.5.1",
"com.typesafe.akka" %% "akka-cluster" % "2.5.1",
"com.typesafe.akka" %% "akka-cluster-metrics" % "2.5.1",
"com.typesafe.akka" %% "akka-cluster-tools" % "2.5.1",
"com.typesafe.akka" %% "akka-slf4j" % "2.5.1",
"ch.qos.logback" % "logback-classic" % "1.1.7",
"org.apache.commons" %"commons-lang3" % "3.5",
"org.iq80.leveldb" % "leveldb" % "0.7",
"org.fusesource.leveldbjni" % "leveldbjni-all" % "1.8"
)
scalacOptions in Test ++= Seq("-Yrangepos")