forked from valiantljk/h5spark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
32 lines (22 loc) · 917 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
import sbt.Resolver
name := "h5spark"
version := "1.0"
scalaVersion := "2.11.8"
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" % "2.0.0" % "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" % "2.0.0" % "provided",
"org.scalactic" %% "scalactic" % "2.2.6",
"org.scalatest" %% "scalatest" % "2.2.6" % "test"
)
/**
* Prevents multiple SparkContexts from being launched
*/
parallelExecution in Test := false