After this you should be able to use the library in the shell as follows: ``` bin/spark-shell --packages com.databricks:spark-sql-perf:0.2.3 ``` Author: Michael Armbrust <michael@databricks.com> Closes #46 from marmbrus/publishToMaven.
17 lines
599 B
Scala
17 lines
599 B
Scala
// You may use this file to add plugin dependencies for sbt.
|
|
|
|
resolvers += "Spark Packages repo" at "https://dl.bintray.com/spark-packages/maven/"
|
|
|
|
resolvers += "sonatype-releases" at "https://oss.sonatype.org/content/repositories/releases/"
|
|
|
|
addSbtPlugin("org.spark-packages" %% "sbt-spark-package" % "0.1.1")
|
|
|
|
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.6.0")
|
|
|
|
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.0")
|
|
|
|
addSbtPlugin("com.databricks" %% "sbt-databricks" % "0.1.3")
|
|
|
|
addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")
|
|
|
|
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0") |