-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.sbt
More file actions
31 lines (21 loc) · 1013 Bytes
/
Copy pathbuild.sbt
File metadata and controls
31 lines (21 loc) · 1013 Bytes
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
name := "disthist"
version := "0.1.0"
scalaVersion in ThisBuild := "2.11.8"
scalaVersion := "2.11.8"
//ivyScala := ivyScala.value map { _.copy(overrideScalaVersion = true) }
fork in test := true
scalacOptions := Seq("-unchecked", "-deprecation", "-feature")
// For Spark tests
parallelExecution in test := false
libraryDependencies += "org.apache.spark" %% "spark-sql" % "2.2.0" // % "provided"
libraryDependencies += "org.apache.spark" %% "spark-mllib" % "2.2.0" // % "provided"
// libraryDependencies += "org.vegas-viz" %% "vegas" % "0.3.11"
// libraryDependencies += "org.scalaz" %% "scalaz-core" % "7.2.16"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % "test"
//val meta = """META.INF(.)*""".r
//assemblyMergeStrategy in assembly := {
// case "BUILD" => MergeStrategy.discard
// case "META-INF/MANIFEST.MF" => MergeStrategy.discard
// case meta(_) => MergeStrategy.last // or MergeStrategy.discard, your choice
// case other => MergeStrategy.defaultMergeStrategy(other)
//}