-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.sbt
31 lines (24 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
27
28
29
30
31
name := "akka-typed-blog"
version := "1.0"
scalaVersion := "2.12.3"
//scalaVersion := "2.11.11"
enablePlugins(ProtobufPlugin)
lazy val akkaVersion = "2.5.6"
lazy val akkaTypedVersion = "2.5.7"
lazy val cassandraPluginVersion = "0.56"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-typed" % akkaTypedVersion,
"com.typesafe.akka" %% "akka-cluster" % akkaVersion,
"com.typesafe.akka" %% "akka-distributed-data" % akkaVersion,
"com.typesafe.akka" %% "akka-cluster-tools" % akkaVersion,
"com.typesafe.akka" %% "akka-cluster-sharding" % akkaVersion,
"com.typesafe.akka" %% "akka-persistence" % akkaVersion,
"com.typesafe.akka" %% "akka-persistence-cassandra" % cassandraPluginVersion,
// this allows us to start cassandra from the sample
"com.typesafe.akka" %% "akka-persistence-cassandra-launcher" % cassandraPluginVersion,
"com.typesafe.akka" %% "akka-typed-testkit" % akkaTypedVersion % "test",
"org.scalatest" %% "scalatest" % "3.0.4" % "test",
"junit" % "junit" % "4.12" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test"
)
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v")