-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
26 lines (24 loc) · 1.06 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
val akkaVersion = "2.5.7"
val project = Project(
id = "reactiveio",
base = file(".")
)
.settings(
name := "reactiveio",
scalaVersion := "2.12.4",
scalacOptions in Compile ++= Seq("-encoding", "UTF-8", "-target:jvm-1.8", "-deprecation", "-feature", "-unchecked", "-Xlog-reflective-calls", "-Xlint"),
javacOptions in Compile ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint:unchecked", "-Xlint:deprecation"),
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-remote" % akkaVersion,
"com.typesafe.akka" %% "akka-cluster" % akkaVersion,
"com.typesafe.akka" %% "akka-distributed-data" % akkaVersion,
"org.tmatesoft.svnkit" % "svnkit" % "1.8.11",
"com.typesafe.akka" %% "akka-multi-node-testkit" % akkaVersion,
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"com.typesafe.akka" %% "akka-http" % "10.1.3",
"com.typesafe.akka" %% "akka-http-testkit" % "10.1.3",
"com.typesafe.play" % "play-json_2.12" % "2.6.5"
)
)
fork in run := true