Created
January 10, 2021 14:06
-
-
Save ace-racer/6fbd0c304cdfea3f4486d869935692e4 to your computer and use it in GitHub Desktop.
Build sbt for Word Counter Scala application
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 := "WordCounter" | |
| version := "0.1" | |
| scalaVersion := "2.12.6" | |
| // https://mvnrepository.com/artifact/org.apache.spark/spark-core | |
| libraryDependencies += "org.apache.spark" %% "spark-core" % "2.4.6" | |
| libraryDependencies += "org.apache.spark" %% "spark-sql" % "2.4.6" | |
| libraryDependencies += "org.apache.spark" %% "spark-mllib" % "2.4.6" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment