-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
42 lines (28 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
32
33
34
35
36
37
38
39
40
41
42
name := """react-play-eventsourcing"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala, SbtWeb)
scalaVersion := "2.11.8"
resolvers += "Eventuate Releases" at "https://dl.bintray.com/rbmhtechnology/maven"
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
javaOptions in Test += "-Dconfig.resource=test.conf"
//Heroku
herokuAppName in Compile := "play-eventsourcing"
herokuJdkVersion in Compile := "1.8"
val akkaVersion = "2.4.7"
libraryDependencies ++= Seq(
ws,
//Eventuate
"com.rbmhtechnology" %% "eventuate-core" % "0.7.1",
"com.rbmhtechnology" %% "eventuate-log-leveldb" % "0.7.1",
//JSON
"org.json4s" %% "json4s-jackson" % "3.3.0",
"org.json4s" %% "json4s-ext" % "3.3.0",
//UI
"org.webjars" %% "webjars-play" % "2.5.0-2",
"com.adrianhurt" %% "play-bootstrap" % "1.0-P25-B3",
//TEST
"org.scalatestplus.play" %% "scalatestplus-play" % "1.5.1" % Test,
"com.typesafe.akka" %% "akka-multi-node-testkit" % akkaVersion % Test,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test
)
routesGenerator := InjectedRoutesGenerator