-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.sbt
More file actions
19 lines (15 loc) · 807 Bytes
/
build.sbt
File metadata and controls
19 lines (15 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name := "BillAnalysis"
version := "2.0"
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
("org.apache.spark" % "spark-core_2.11" % "2.4.0" % "provided"),
("org.apache.spark" % "spark-sql_2.11" % "2.4.0" % "provided"),
("org.apache.spark" % "spark-mllib_2.11" % "2.4.0" % "provided")
)
//libraryDependencies += "com.databricks" %% "spark-avro" % "2.0.1"
libraryDependencies += "com.github.scopt" %% "scopt" % "3.4.0"
libraryDependencies += "com.typesafe" % "config" % "1.3.0"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging-api" % "2.1.2"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging-slf4j" % "2.1.2"
libraryDependencies += "org.diana-hep" %% "histogrammar" % "1.0.4"
libraryDependencies += "org.diana-hep" %% "histogrammar-sparksql" % "1.0.4"