Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. scalaVersion := "2.11.8"
  2.  
  3.  
  4. name := "datacrunch"
  5.  
  6. val sparkV = "1.6.1"
  7.  
  8.  
  9.  
  10. libraryDependencies ++= Seq(
  11. "com.chuusai" %% "shapeless" % "2.3.1"
  12. )
  13.  
  14. libraryDependencies ++= Seq(
  15. "org.apache.spark" %% "spark-core" % sparkV,
  16. "org.apache.spark" %% "spark-streaming" % sparkV,
  17. "org.apache.spark" %% "spark-mllib" % sparkV,
  18. "org.apache.spark" %% "spark-hive" % sparkV,
  19. "com.databricks" %% "spark-csv" % "1.2.0",
  20. "com.databricks" %% "spark-avro" % "2.0.1"
  21. )%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement