Skip to content

Instantly share code, notes, and snippets.

@TomLous
Last active January 1, 2020 21:10
Show Gist options
  • Save TomLous/32473414b926e43f7bae069b9a09fb7b to your computer and use it in GitHub Desktop.
Save TomLous/32473414b926e43f7bae069b9a09fb7b to your computer and use it in GitHub Desktop.
build.sbt part 1 for Medium Post
val sparkVersion = "2.4.4"
val sparkLibs = Seq(
"org.apache.spark" %% "spark-core" % sparkVersion % "provided",
"org.apache.spark" %% "spark-sql" % sparkVersion % "provided"
)
lazy val commonSettings = Seq(
organization := "xyz.graphiq",
scalaVersion := "2.12.10",
version := "0.1",
libraryDependencies ++= sparkLibs
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment