-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.sbt
More file actions
26 lines (18 loc) · 693 Bytes
/
Copy pathbuild.sbt
File metadata and controls
26 lines (18 loc) · 693 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
import sbt.Resolver
name := "CustomUDWF"
version := "0.1"
scalaVersion := "2.11.11"
val sparkVersion = "2.2.0"
libraryDependencies ++= Seq (
"org.apache.spark" %% "spark-core" % sparkVersion % "provided",
"org.apache.spark" %% "spark-sql" % sparkVersion % "provided",
// test dependencies
"com.holdenkarau" %% "spark-testing-base" % "2.2.0_0.7.2" % "test",
"org.scalatest" %% "scalatest" % "3.0.1" % "test"
)
resolvers ++= Seq(
"SnowPlow Repo" at "http://maven.snplow.com/releases/",
"Maven Repository" at "https://mvnrepository.com",
Resolver.sonatypeRepo("public"), "Confluent Maven Repo" at "http://packages.confluent.io/maven/"
)
parallelExecution in Test := false