-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathbuild.sbt
33 lines (25 loc) · 1.08 KB
/
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
30
31
32
33
name := "sparkStreamingKafkaPerformance"
version := "0.1"
scalaVersion := "2.11.11"
javacOptions++=Seq("-source","1.8","-target","1.8")
val kafkaVersion = "0.10.1.0"
val sparkVersion = "2.2.1"
val kuduVersion = "1.4.0"
val igniteVersion = "2.4.0"
libraryDependencies ++= Seq(
"junit" % "junit" % "4.12" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test",
"org.apache.spark" %% "spark-core" % sparkVersion % "provided",
"org.apache.spark" % "spark-sql_2.11" % sparkVersion % "provided",
"org.apache.spark" %% "spark-streaming" % sparkVersion % "provided",
"org.apache.kudu" % "kudu-client" % kuduVersion,
"org.apache.kudu" %% "kudu-spark2" % kuduVersion,
"org.apache.kafka" %% "kafka" % kafkaVersion,
"com.beust" % "jcommander" % "1.72",
"mysql" % "mysql-connector-java" % "5.1.38",
"org.apache.ignite" %% "ignite-spark" % igniteVersion,
"org.apache.ignite" %% "ignite-core" % igniteVersion,
"org.apache.spark" %% "spark-streaming-kafka-0-10" % sparkVersion
)
aggregate in update := true
updateOptions := updateOptions.in(Global).value.withCachedResolution(true)