-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
34 lines (24 loc) · 898 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
name := """cems"""
version := "1.0.2"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
jdbc,
cache,
ws,
specs2 % Test,
"com.github.nscala-time" %% "nscala-time" % "2.16.0",
"org.mongodb.scala" %% "mongo-scala-driver" % "1.2.1"
)
mappings in Universal ++=
(baseDirectory.value / "report_template" * "*" get) map
(x => x -> ("report_template/" + x.getName))
mappings in Universal ++=
(baseDirectory.value / "importEPA/backup/" * "*" get) map
(x => x -> ("importEPA/backup/" + x.getName))
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
// Play provides two styles of routers, one expects its actions to be injected, the
// other, legacy style, accesses its actions statically.
//routesGenerator := InjectedRoutesGenerator
scalacOptions ++= Seq("-feature")
fork in run := false