-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.sbt
More file actions
28 lines (21 loc) · 739 Bytes
/
build.sbt
File metadata and controls
28 lines (21 loc) · 739 Bytes
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
organization := "com.mread"
name := "Router"
version := "1.0"
scalaVersion := "2.11.7"
resolvers += "Typesafe Repo" at "http://repo.typesafe.com/typesafe/releases/"
//val akkaVersion = "2.3.12"
val akkaVersion = "2.4.3"
val playVersion = "2.4.4"
javaOptions ++= Seq(
"-Dcom.sun.management.jmxremote.port=9999",
"-Dcom.sun.management.jmxremote.authenticate=false",
"-Dcom.sun.management.jmxremote.ssl=false"
)
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-json" % playVersion,
"com.typesafe.akka" %% "akka-cluster" % akkaVersion,
"com.github.cb372" %% "scalacache-guava" % "0.6.4",
// test stuff
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test"
)