forked from kevinchabreck/paintchat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
28 lines (22 loc) · 855 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
28
name := "PaintChat"
version := "2.0"
scalaVersion := "2.12.4"
scalacOptions ++= Seq(
"-deprecation",
"-language:postfixOps",
"-target:jvm-1.8"
)
val akkaVersion = "2.5.9"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-cluster" % akkaVersion,
"com.typesafe.akka" %% "akka-cluster-tools" % akkaVersion,
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-persistence" % akkaVersion,
"com.typesafe.akka" %% "akka-persistence-cassandra" % "0.80",
"com.typesafe.akka" %% "akka-http" % "10.1.0-RC1",
"com.typesafe.play" %% "play-json" % "2.6.8",
"com.lightbend.akka.management" %% "akka-management-cluster-bootstrap" % "0.10.0",
"com.lightbend.akka.discovery" %% "akka-discovery-dns" % "0.10.0",
"org.apache.commons" % "commons-text" % "1.2",
"org.slf4j" % "slf4j-simple" % "1.7.25"
)