-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
executable file
·61 lines (51 loc) · 2.29 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import WebKeys._
import PlayKeys._
name := "ibettermeeting"
organization in ThisBuild := "ch.hsr"
version := "0.1-SNAPSHOT"
scalaVersion := "2.11.1"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
libraryDependencies ++= Seq(
"com.google.inject" % "guice" % "3.0",
"javax.inject" % "javax.inject" % "1",
"org.reactivemongo" %% "play2-reactivemongo" % "0.10.5.akka23-SNAPSHOT",
"org.reactivemongo" %% "reactivemongo-extensions-json" % "0.10.5.0.0.akka23",
"com.typesafe.akka" %% "akka-actor" % "2.3.6",
"com.notnoop.apns" % "apns" % "0.1.6",
"com.sun.mail" % "javax.mail" % "1.5.1",
"com.google.api-client" % "google-api-client-jackson2" % "1.18.0-rc",
"org.mnode.ical4j" % "ical4j" % "2.0-beta1-SNAPSHOT",
"org.mindrot" % "jbcrypt" % "0.3m",
"org.webjars" % "bootstrap" % "3.2.0" exclude("org.webjars", "jquery"),
"org.webjars" % "angularjs" % "1.3.0" exclude("org.webjars", "jquery"),
"org.webjars" % "angular-ui-bootstrap" % "0.11.0-3",
"org.webjars" % "bootswatch-paper" % "3.2.0+4",
"org.webjars" % "jquery" % "2.1.1",
"org.webjars" % "momentjs" % "2.8.3",
"org.webjars" % "angular-ui-select" % "0.8.3",
"org.webjars" % "angular-ui-calendar" % "0.9.0-beta.1",
"org.webjars" % "angular-strap" % "2.1.3",
"org.webjars" % "angular-motion" % "0.3.3",
"org.webjars" % "intro.js" % "1.0.0",
"com.github.nscala-time" %% "nscala-time" % "1.4.0")
// Scala Compiler Options
scalacOptions in ThisBuild ++= Seq(
"-encoding", "UTF-8",
"-deprecation", // warning and location for usages of deprecated APIs
"-feature", // warning and location for usages of features that should be imported explicitly
"-unchecked", // additional warnings where generated code depends on assumptions
"-Xlint", // recommended additional warnings
"-Ywarn-adapted-args", // Warn if an argument list is modified to match the receiver
"-Ywarn-value-discard", // Warn when non-Unit expression results are unused
"-Ywarn-inaccessible",
"-Ywarn-dead-code"
)
//
// sbt-web configuration
// https://github.com/sbt/sbt-web
//
routesImport ++= Seq("extensions.Binders._", "reactivemongo.bson.BSONObjectID")
// scoverage/sbt-scoverage
// https://github.com/scoverage/sbt-scoverage
instrumentSettings