-
Notifications
You must be signed in to change notification settings - Fork 46
/
build.sbt
31 lines (20 loc) · 852 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
30
31
name := "modern-web-template"
version := "0.1-SNAPSHOT"
scalaVersion := "2.11.6"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
pipelineStages := Seq(uglify, digest, gzip)
pipelineStages in Assets := Seq()
pipelineStages := Seq(uglify, digest, gzip)
DigestKeys.algorithms += "sha1"
UglifyKeys.uglifyOps := { js =>
Seq((js.sortBy(_._2), "concat.min.js"))
}
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
libraryDependencies ++= Seq(
"com.google.inject" % "guice" % "4.0",
"javax.inject" % "javax.inject" % "1",
"org.reactivemongo" %% "play2-reactivemongo" % "0.10.5.0.akka23",
"org.webjars" % "bootstrap" % "3.3.4",
"org.webjars" % "angularjs" % "1.3.15",
"org.webjars" % "angular-ui-bootstrap" % "0.13.0",
"org.mockito" % "mockito-core" % "1.10.19" % "test")