-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
51 lines (41 loc) · 1.93 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
name := "spray-spark-react"
version := "4.0-SNAPSHOT"
licenses := Seq("Apache-2.0" -> url("http://opensource.org/licenses/Apache-2.0"))
scalaVersion := "2.11.6"
resolvers ++= Seq(
"Spray Repository" at "http://repo.spray.io",
"Apache Staging" at "https://repository.apache.org/content/repositories/staging/",
"Scalaz Bintray Repo" at "https://dl.bintray.com/scalaz/releases"
)
libraryDependencies ++= {
val akkaVersion = "2.3.10"
val sprayVersion = "1.3.3"
val sparkVersion = "1.3.0"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"io.spray" %% "spray-can" % sprayVersion,
"io.spray" %% "spray-routing" % sprayVersion,
"io.spray" %% "spray-json" % "1.3.1",
"io.spray" %% "spray-httpx" % sprayVersion,
"org.apache.spark" %% "spark-core" % sparkVersion,
"org.apache.spark" %% "spark-sql" % sparkVersion,
// WebJars (i.e. client-side) dependencies
"org.webjars" % "requirejs" % "2.1.17",
"org.webjars" % "requirejs-text" % "2.0.10-3",
"org.webjars" % "react" % "0.13.1",
"org.webjars" % "jsx-requirejs-plugin" % "0.6.0",
"org.webjars" % "jquery" % "2.1.4",
"org.webjars" % "react-router" % "0.13.2",
"org.webjars" % "bootstrap" % "3.3.4",
"org.webjars" % "react-bootstrap" % "0.19.1",
// test
"io.spray" %% "spray-testkit" % sprayVersion % "test",
"org.specs2" %% "specs2-core" % "3.6" % "test",
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test"
)
}
Twirl.settings
Revolver.settings
ivyScala := ivyScala.value map { _.copy(overrideScalaVersion = true) }
fork in run := true
parallelExecution in Test := false