-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
32 lines (24 loc) · 899 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 := """skalholt-ui"""
version := "0.1.3"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
.aggregate(skalholtCore)
.dependsOn(skalholtCore)
lazy val skalholtCore = (project in file("skalholt-core"))
scalaVersion := "2.11.7"
libraryDependencies ++= Seq(
jdbc,
"com.typesafe.slick" %% "slick" % "3.0.0",
"com.typesafe.slick" %% "slick-codegen" % "3.0.0",
"com.zaxxer" % "HikariCP-java6" % "2.3.3",
"org.postgresql" % "postgresql" % "9.4-1201-jdbc41",
"com.typesafe.play" %% "play-slick" % "1.0.0",
"com.h2database" % "h2" % "1.3.176",
cache,
ws,
specs2 % Test
)
scalacOptions += "-deprecation"
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