forked from valiantljk/h5spark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (20 loc) · 814 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
import sbt.Resolver
name := "h5spark"
version := "1.0"
scalaVersion := "2.10.5"
resolvers ++= Seq(
"Unidata maven repository" at "http://artifacts.unidata.ucar.edu/content/repositories/unidata-releases",
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/",
"Sonatype Releases" at "https://oss.sonatype.org/content/repositories/releases/"
)
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % "1.5.1" % "provided",
"org.scalanlp" %% "breeze" % "0.12" % "provided",
"org.scalanlp" %% "breeze-natives" % "0.12" % "provided",
"org.scalanlp" %% "breeze-viz" % "0.12" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.5.1" % "provided"
)
/**
* Prevents multiple SparkContexts from being launched
*/
parallelExecution in Test := false