-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (23 loc) · 997 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
name := "spargel"
version := "3.0"
organization := "ikt"
scalaVersion := "2.12.15"
/**
* Makes it possible to run the application from sbt-shell.
* Otherwise java.lang.InterruptedException gets called and
* the context isn't closed correctly
*/
fork := true
libraryDependencies += "org.apache.spark" %% "spark-core" % "3.2.4"
libraryDependencies += "org.apache.spark" %% "spark-sql" % "3.2.4"
//libraryDependencies += "org.vegas-viz" % "vegas-spark_2.11" % "0.3.11"
//libraryDependencies += "org.vegas-viz" % "vegas-macros_2.11" % "0.3.11"
libraryDependencies += "commons-cli" % "commons-cli" % "1.5.0"
libraryDependencies += "org.apache.commons" % "commons-math3" % "3.6.1"
//resolvers += Resolver.mavenLocal
resolvers += "Sonatype Releases" at "https://oss.sonatype.org/content/repositories/releases/"
// fork in run := true
assemblyMergeStrategy in assembly := {
case PathList("META-INF", xs @ _*) => MergeStrategy.discard
case x => MergeStrategy.first
}