-
-
Save fabsta/1eda406636ea01706957431d9ad1b480 to your computer and use it in GitHub Desktop.
spark_final_build_sbt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name := "Spark2.0-and-greater" | |
version := "1.0" | |
//Older Scala Version | |
scalaVersion := "2.11.8" | |
val overrideScalaVersion = "2.11.8" | |
val sparkVersion = "2.0.0" | |
val sparkXMLVersion = "0.3.3" | |
val sparkCsvVersion = "1.4.0" | |
val sparkElasticVersion = "2.3.4" | |
val sscKafkaVersion = "1.6.2" | |
val sparkMongoVersion = "1.0.0" | |
val sparkCassandraVersion = "1.6.0" | |
//Override Scala Version to the above 2.11.8 version | |
ivyScala := ivyScala.value map { _.copy(overrideScalaVersion = true) } | |
resolvers ++= Seq( | |
"All Spark Repository -> bintray-spark-packages" at "https://dl.bintray.com/spark-packages/maven/" | |
) | |
libraryDependencies ++= Seq( | |
"org.apache.spark" %% "spark-core" % sparkVersion exclude("jline", "2.12"), | |
"org.apache.spark" %% "spark-sql" % sparkVersion excludeAll(ExclusionRule(organization = "jline"),ExclusionRule("name","2.12")), | |
"org.apache.spark" %% "spark-hive" % sparkVersion, | |
"org.apache.spark" %% "spark-yarn" % sparkVersion, | |
"com.databricks" %% "spark-xml" % sparkXMLVersion, | |
"com.databricks" %% "spark-csv" % sparkCsvVersion, | |
"org.apache.spark" %% "spark-graphx" % sparkVersion, | |
"org.apache.spark" %% "spark-catalyst" % sparkVersion, | |
"org.apache.spark" %% "spark-streaming" % sparkVersion, | |
// "com.101tec" % "zkclient" % "0.9", | |
"org.elasticsearch" %% "elasticsearch-spark" % sparkElasticVersion, | |
"org.apache.spark" %% "spark-streaming-kafka" % sscKafkaVersion, | |
"org.mongodb.spark" % "mongo-spark-connector_2.11" % sparkMongoVersion, | |
"com.stratio.datasource" % "spark-mongodb_2.10" % "0.11.1" | |
// Adding this directly as part of Build.sbt throws Guava Version incompatability issues. | |
// Please look my Spark Cassandra Guava Shade Project and use that Jar directly. | |
//"com.datastax.spark" % "spark-cassandra-connector_2.11" % sparkCassandraVersion | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment