-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.sbt
36 lines (25 loc) · 1001 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
32
33
34
35
36
// General
name := "project-doc"
version := "1.0-SNAPSHOT"
scalaVersion := "2.11.6"
resolvers += "spray repo" at "http://repo.spray.io"
libraryDependencies ++= Seq(
"org.apache.commons" % "commons-compress" % "1.8.1",
"commons-io" % "commons-io" % "2.4",
"org.webjars" % "foundation" % "5.5.1",
"com.googlecode.kiama" %% "kiama" % "1.8.0",
"com.typesafe.play" %% "play-doc" % "1.1.0",
"io.spray" %% "spray-caching" % "1.3.3",
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
"org.scalatestplus" %% "play" % "1.2.0" % "test",
ws
)
// Play
routesGenerator := InjectedRoutesGenerator
routesImport += "controllers.Application.Project"
// sbt-web
JsEngineKeys.engineType := JsEngineKeys.EngineType.Node
StylusKeys.useNib in Assets := true
StylusKeys.compress in Assets := false
// Project/module declarations
lazy val root = (project in file(".")).enablePlugins(PlayScala)