-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.sbt
36 lines (24 loc) · 1.18 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
34
35
36
name := "akka-spark-kafka-pipeline"
version := "0.1"
scalaVersion := "2.11.12"
resolvers += "Spark Packages" at "https://dl.bintray.com/spark-packages/maven/"
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % "2.4.0",
"org.apache.spark" %% "spark-sql" % "2.4.0",
"org.apache.spark" %% "spark-sql-kafka-0-10" % "2.4.0" % "provided",
"org.apache.kafka" %% "kafka" % "2.1.0",
"org.apache.kafka" % "kafka-clients" % "2.1.1",
"com.typesafe.akka" %% "akka-http" % "10.1.8",
"com.typesafe.akka" %% "akka-stream" % "2.5.22",
"io.spray" %% "spray-json" % "1.3.5",
"com.google.inject" % "guice" % "4.2.2",
"net.codingwell" %% "scala-guice" % "4.2.3",
"org.reactivemongo" %% "reactivemongo" % "0.16.4",
"org.mongodb.spark" %% "mongo-spark-connector" % "2.4.0",
"org.apache.spark" %% "spark-graphx" % "2.4.0",
"graphframes" % "graphframes" % "0.7.0-spark2.4-s_2.11",
"neo4j-contrib" % "neo4j-spark-connector" % "2.1.0-M4",
"commons-logging" % "commons-logging" % "1.2"
).map(_.exclude("org.slf4j", "*"))
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3"
dependencyOverrides += "com.fasterxml.jackson.core" % "jackson-databind" % "2.6.7"