-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
37 lines (28 loc) · 1.09 KB
/
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
35
36
37
import com.typesafe.config.ConfigFactory
import play.PlayScala
val conf = ConfigFactory.parseFile(new File("conf/application.conf")).resolve()
name := """xplay-webui"""
version := conf.getString("application.version")
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.1"
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")
resolvers += "c4c nexus repository" at "http://nexus.coding4.coffee/content/groups/hosted"
libraryDependencies ++= Seq(
jdbc,
anorm,
cache,
ws
).map(_.exclude("commons-logging", "commons-logging"))
libraryDependencies ++= Seq(
"org.webjars" %% "webjars-play" % "2.3.0",
"org.webjars" % "bootstrap" % "3.2.0",
"org.webjars" % "chartjs" % "26962ce",
"org.webjars" % "angularjs" % "1.2.21",
"org.webjars" % "angular-ui-bootstrap" % "0.11.0-2",
"org.webjars" % "smoothie" % "1.24",
"org.webjars" % "reconnecting-websocket" % "23d2fbc",
"org.webjars" % "font-awesome" % "4.2.0",
"org.webjars" % "leaflet" % "0.7.3",
"org.webjars" % "leaflet-plugins" % "1.1.2",
"org.webjars" % "leaflet-easybutton" % "0b147ac"
)