-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
30 lines (22 loc) · 869 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
name := """spacewhales"""
version := "1.0-SNAPSHOT"
scalaVersion := "2.12.4"
routesGenerator := InjectedRoutesGenerator
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
// resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies ++= Seq(
guice,
javaJdbc,
cacheApi,
javaWs,
"org.webjars" %% "webjars-play" % "2.6.3",
"org.webjars" % "bootstrap" % "4.0.0-1",
"org.webjars" % "jquery" % "3.3.1-1",
"org.webjars" % "font-awesome" % "5.0.6",
"com.h2database" % "h2" % "1.4.192",
"com.adrianhurt" %% "play-bootstrap" % "1.4-P26-B4-SNAPSHOT",
"org.postgresql" % "postgresql" % "9.4-1201-jdbc41"
)
lazy val root = (project in file(".")).enablePlugins(PlayJava, PlayEbean)
fork in run := true
includeFilter in (Assets, LessKeys.less) := "footer.less"