-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
executable file
·47 lines (20 loc) · 1.01 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
39
40
41
42
43
name := "dikschedulingapp"
version := "1.0"
lazy val `dikschedulingapp` = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.8"
PlayKeys.playRunHooks <+= baseDirectory.map(Webpack(_))
excludeFilter in (Assets, JshintKeys.jshint) := "*.js"
watchSources ~= { (ws: Seq[File]) =>
ws filterNot { path =>
path.getName.endsWith(".js") || path.getName == ("build")
}
}
pipelineStages := Seq(digest, gzip)
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
libraryDependencies ++= Seq( cache , ws , specs2 % Test ,cache)
libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.34"
libraryDependencies += "com.typesafe.play" %% "play-slick" % "2.0.0"
libraryDependencies += "com.typesafe.slick" %% "slick-codegen" % "3.0.0"
libraryDependencies += "com.h2database" % "h2" % "1.4.187" % "test"
//libraryDependencies += "org.reactivemongo" %% "play2-reactivemongo" % "0.12.3"
unmanagedResourceDirectories in Test <+= baseDirectory ( _ /"target/web/public/test" )