-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
34 lines (27 loc) · 1.17 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
name := """centralapp-events"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.6"
val opRabbitVersion = "1.3.0"
libraryDependencies ++= Seq(
jdbc,
cache,
ws,
specs2 % Test,
"com.typesafe.akka" %% "akka-remote" % "2.3.4",
"com.typesafe.akka" %% "akka-stream" % "2.4.2",
"com.typesafe.akka" %% "akka-slf4j" % "2.4.0",
"io.intercom" % "intercom-java" % "1.3.1",
"org.codehaus.janino" % "janino" % "2.7.8",
"com.getsentry.raven" % "raven-logback" % "7.2.2",
"io.swagger" %% "swagger-play2" % "1.5.2",
"io.swagger" % "swagger-parser" % "1.0.16",
"com.spingo" %% "op-rabbit-core" % opRabbitVersion
)
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
resolvers += "Akka Snapshot Repository" at "http://repo.akka.io/snapshots/"
resolvers += "SpinGo OSS" at "http://spingo-oss.s3.amazonaws.com/repositories/releases"
// Play provides two styles of routers, one expects its actions to be injected, the
// other, legacy style, accesses its actions statically.
routesGenerator := InjectedRoutesGenerator