Last active
January 1, 2020 21:10
-
-
Save TomLous/32473414b926e43f7bae069b9a09fb7b to your computer and use it in GitHub Desktop.
build.sbt part 1 for Medium Post
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
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