-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
38 lines (27 loc) · 1.25 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
name := """overture_webide"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
javaWs,
filters,
"org.apache.commons" % "commons-vfs2" % "2.0",
"commons-io" % "commons-io" % "2.4",
"com.google.oauth-client" % "google-oauth-client" % "1.21.0",
"com.google.api-client" % "google-api-client" % "1.21.0",
// "org.slf4j" % "slf4j-api" % "1.7.21",
// "org.slf4j" % "slf4j-log4j12" % "1.7.21",
"com.jayway.restassured" % "rest-assured" % "2.8.0" % "test",
"com.jayway.restassured" % "scala-support" % "2.8.0" % "test",
"com.jayway.restassured" % "json-path" % "2.8.0" % "test",
"com.jayway.restassured" % "xml-path" % "2.8.0" % "test",
"com.jayway.restassured" % "json-schema-validator" % "2.8.0" % "test",
"org.hamcrest" % "hamcrest-all" % "1.3" % "test",
"javax.websocket" % "javax.websocket-api" % "1.1" % "test",
"org.glassfish.tyrus" % "tyrus-client" % "1.12" % "test",
"org.glassfish.tyrus" % "tyrus-container-grizzly-client" % "1.12" % "test"
)
// Play provides two styles of routers, one expects its actions to be injected, the
// other, legacy style, accesses its actions statically.
routesGenerator := InjectedRoutesGenerator
fork in run := true