forked from G-Node/GCA-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
32 lines (25 loc) · 939 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
name := "GCA-Web"
version := "1.0"
lazy val `GCA-Web`: Project = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.1"
libraryDependencies ++= Seq(
jdbc,
anorm,
cache,
ws,
"org.scalatest" %% "scalatest" % "2.2.1",
"org.eclipse.persistence" % "org.eclipse.persistence.jpa" % "2.5.2",
"com.typesafe.play" %% "play-mailer" % "2.4.0",
"com.mohiva" %% "play-silhouette" % "1.0",
"org.postgresql" % "postgresql" % "9.3-1100-jdbc4",
// web jars
"org.webjars" % "requirejs" % "2.1.15",
"org.webjars" % "jquery" % "1.11.2",
"org.webjars" % "jquery-ui" % "1.11.2",
"org.webjars" % "bootstrap" % "3.1.1" exclude("org.webjars", "jquery"),
"org.webjars" % "knockout" % "3.0.0" exclude("org.webjars", "jquery"),
"org.webjars" % "sammy" % "0.7.4",
"org.webjars" % "momentjs" % "2.9.0"
)
includeFilter in (Assets, LessKeys.less) := "*.less"
excludeFilter in (Assets, LessKeys.less) := "_*.less"