forked from matthiasn/sse-chat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
27 lines (22 loc) · 895 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
name := """sse-chat"""
version := "1.0"
//scalaVersion := "2.10.0"
libraryDependencies ++= Seq(
"org.webjars" % "webjars-play_2.10" % "2.2.0",
"org.webjars" % "angularjs" % "1.1.5-1",
"org.webjars" % "bootstrap" % "2.3.2",
"org.scalatest" %% "scalatest" % "1.9.1" % "test",
"junit" % "junit" % "4.11" % "test",
"com.novocode" % "junit-interface" % "0.7" % "test->default"
)
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v")
// Note: These settings are defaults for Activator but can be changed.
Seq(
scalaSource in Compile <<= baseDirectory / "app",
javaSource in Compile <<= baseDirectory / "app",
sourceDirectory in Compile <<= baseDirectory / "app",
scalaSource in Test <<= baseDirectory / "test",
javaSource in Test <<= baseDirectory / "test",
sourceDirectory in Test <<= baseDirectory / "test",
resourceDirectory in Compile <<= baseDirectory / "conf"
)