-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.sbt
29 lines (19 loc) · 796 Bytes
/
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
name := """play-api-rest-tester"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.7"
scalacOptions ++= Seq("-feature", "-deprecation", "-unchecked", "-language:reflectiveCalls", "-language:postfixOps", "-language:implicitConversions")
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
pipelineStages := Seq(rjs)
RjsKeys.mainModule := "main"
doc in Compile <<= target.map(_ / "none")
scalariformSettings
libraryDependencies ++= Seq(
cache,
ws,
specs2 % Test,
"org.webjars" % "jquery" % "3.1.0",
"org.webjars" % "bootstrap" % "3.3.7-1" exclude("org.webjars", "jquery"),
"org.webjars" % "requirejs" % "2.3.1",
"org.webjars" % "jquery-jsonview" % "1.2.2" exclude("org.webjars", "jquery")
)