-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
27 lines (19 loc) · 851 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
24
25
26
27
name := "Persistence"
version := "1.0"
scalaVersion := "2.12.2"
val akka_version = "2.5.3"
resolvers += Resolver.jcenterRepo
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akka_version,
"com.typesafe.akka" %% "akka-persistence" % akka_version,
"org.iq80.leveldb" % "leveldb" % "0.7",
"org.fusesource.leveldbjni" % "leveldbjni-all" % "1.8",
"com.typesafe.akka" %% "akka-persistence" % akka_version,
"com.typesafe.akka" %% "akka-stream" % akka_version,
"com.typesafe.akka" %% "akka-actor" % akka_version,
"com.typesafe.akka" %% "akka-remote" % akka_version,
"com.typesafe.akka" %% "akka-cluster-sharding" % akka_version,
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"com.typesafe.akka" %% "akka-testkit" % akka_version % "test",
"com.github.dnvriend" %% "akka-persistence-inmemory" % "2.5.1.1"
)