forked from thunder-project/thunder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
executable file
·38 lines (21 loc) · 1006 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
33
name := "thunder"
version := "0.6.0.dev"
scalaVersion := "2.10.3"
ivyXML := <dependency org="org.eclipse.jetty.orbit" name="javax.servlet" rev="3.0.0.v201112011016">
<artifact name="javax.servlet" type="orbit" ext="jar"/>
</dependency>
net.virtualvoid.sbt.graph.Plugin.graphSettings
libraryDependencies += "org.apache.hadoop" % "hadoop-client" % "1.0.4"
libraryDependencies += "org.apache.spark" %% "spark-core" % "1.2.1" excludeAll(
ExclusionRule(organization = "org.apache.hadoop")
)
libraryDependencies += "org.apache.spark" %% "spark-mllib" % "1.2.1" excludeAll(
ExclusionRule(organization = "org.apache.hadoop")
)
libraryDependencies += "org.scalatest" % "scalatest_2.10" % "2.0" % "test"
libraryDependencies += "io.spray" %% "spray-json" % "1.2.5"
libraryDependencies += "org.jblas" % "jblas" % "1.2.3"
resolvers += "spray" at "http://repo.spray.io/"
resolvers ++= Seq(
"Akka Repository" at "http://repo.akka.io/releases/",
"Spray Repository" at "http://repo.spray.cc/")