-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.sbt
29 lines (21 loc) · 988 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
name := "stark"
scalaVersion := "2.11.8"
lazy val stark = (project in file("."))
libraryDependencies ++= Seq(
//"com.vividsolutions" % "jts" % "1.13" withSources() withJavadoc(),
"org.locationtech.jts" % "jts-core" % "1.16.1",
"org.apache.spark" %% "spark-core" % "2.4.0" % "provided" withSources() ,
"org.apache.spark" %% "spark-mllib" % "2.4.0" % "provided",
"org.apache.spark" %% "spark-sql" % "2.4.0" % "provided",
//"fm.void.jetm" % "jetm" % "1.2.3",
"org.scalatest" %% "scalatest" % "3.0.5" % "test" withSources(),
"org.scalacheck" %% "scalacheck" % "1.14.0" % "test",
//"com.assembla.scala-incubator" %% "graph-core" % "1.11.0",
"org.scala-graph" %% "graph-core" % "1.12.5",
"com.github.scopt" %% "scopt" % "3.7.1"
)
test in assembly := {}
logBuffered in Test := false
parallelExecution in Test := false
assemblyJarName in assembly := "stark.jar"
assemblyOption in assembly := (assemblyOption in assembly).value.copy(includeScala = false)