-
Notifications
You must be signed in to change notification settings - Fork 413
Expand file tree
/
Copy pathbuild.sbt
More file actions
24 lines (15 loc) · 782 Bytes
/
Copy pathbuild.sbt
File metadata and controls
24 lines (15 loc) · 782 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
// 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.0"
sparkPackageName := "databricks/spark-sql-perf"
// 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"))
// Add Spark components this package depends on, e.g, "mllib", ....
sparkComponents ++= Seq("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"