From c2224f37e50628c5c8691be69414ec7f5a3d919a Mon Sep 17 00:00:00 2001 From: Josh Rosen Date: Wed, 17 Aug 2016 17:53:30 -0700 Subject: [PATCH] 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 Closes #85 from JoshRosen/fix-spark-dep. --- build.sbt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 249fe10..2dc8316 100644 --- a/build.sbt +++ b/build.sbt @@ -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"