Depend on non-snapshot Spark now that 2.0.0 is released

Now that Spark 2.0.0 is released, we need to update the build to use a released version instead of the snapshot (which is no longer available).

Fixes #84.

Author: Josh Rosen <joshrosen@databricks.com>

Closes #85 from JoshRosen/fix-spark-dep.
This commit is contained in:
Josh Rosen 2016-08-17 17:53:30 -07:00
parent 948c8369e7
commit c2224f37e5

View File

@ -12,7 +12,7 @@ sparkPackageName := "databricks/spark-sql-perf"
// All Spark Packages need a license
licenses := Seq("Apache-2.0" -> url("http://opensource.org/licenses/Apache-2.0"))
sparkVersion := "2.0.0-SNAPSHOT"
sparkVersion := "2.0.0"
sparkComponents ++= Seq("sql", "hive", "mllib")
@ -30,9 +30,6 @@ initialCommands in console :=
|import sqlContext.implicits._
""".stripMargin
// TODO: remove after Spark 2.0.0 is released:
resolvers += "apache-snapshots" at "https://repository.apache.org/snapshots/"
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.5"
libraryDependencies += "com.github.scopt" %% "scopt" % "3.3.0"