-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
32 lines (22 loc) · 989 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
import play.routes.compiler.InjectedRoutesGenerator
import play.sbt.PlayScala
name := """playing-rethinkdb"""
version := "1.0-SNAPSHOT"
scalaVersion := "2.11.7"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
libraryDependencies ++= Seq(jdbc, cache, ws, specs2 % Test)
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-async" % "0.9.5",
"com.rethinkdb" % "rethinkdb-driver" % "2.2-beta-1",
"org.webjars" %% "webjars-play" % "2.4.0",
"org.webjars" % "bootswatch-united" % "3.3.4+1",
"org.webjars.bower" % "footable" % "2.0.3",
"org.webjars" % "html5shiv" % "3.7.0",
"org.webjars" % "respond" % "1.4.2"
)
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
pipelineStages := Seq(rjs)
TwirlKeys.templateImports += "models.domains._"