-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
25 lines (20 loc) · 812 Bytes
/
build.sbt
File metadata and controls
25 lines (20 loc) · 812 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
name := """fr8-java"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
scalaVersion := "2.11.6"
libraryDependencies ++= Seq(
"com.fasterxml.jackson.core" % "jackson-databind" % "2.7.3",
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.7.3",
"com.fasterxml.jackson.core" % "jackson-core" % "2.7.3",
"org.apache.httpcomponents" % "httpasyncclient" % "4.1.1",
"org.apache.commons" % "commons-lang3" % "3.4",
"com.jcabi" % "jcabi-github" % "0.27",
"junit" % "junit" % "4.12" % "test",
"org.mockito" % "mockito-core" % "1.10.19",
javaJdbc,
cache,
javaWs
)
// Play provides two styles of routers, one expects its actions to be injected, the
// other, legacy style, accesses its actions statically.
routesGenerator := InjectedRoutesGenerator