-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.sbt
More file actions
27 lines (17 loc) · 914 Bytes
/
build.sbt
File metadata and controls
27 lines (17 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Your sbt build file. Guides on how to write one can be found at
// http://www.scala-sbt.org/0.13/docs/index.html
scalaVersion := "2.10.4"
sparkVersion := "1.3.1"
sparkPackageName := "dsg/bench"
// Don't forget to set the version
version := "0.0.1-SNAPSHOT"
// All Spark Packages need a license
licenses := Seq("Apache-2.0" -> url("http://opensource.org/licenses/Apache-2.0"))
//libraryDependencies += "org.apache.spark" %% "spark-core" % "1.3.1"
//libraryDependencies += "org.apache.spark" %% "spark-sql" % "1.3.1"
// Add Spark components this package depends on, e.g, "mllib", ....
sparkComponents ++= Seq("core", "sql", "hive")
// uncomment and change the value below to change the directory where your zip artifact will be created
// spDistDirectory := target.value
// add any sparkPackageDependencies using sparkPackageDependencies.
// e.g. sparkPackageDependencies += "databricks/spark-avro:0.1"