From 7aff76e6c5a11a27ac607f3d0bd59c9113b313a4 Mon Sep 17 00:00:00 2001 From: Bago Amirbekian Date: Wed, 16 Jan 2019 13:40:25 -1000 Subject: [PATCH] [ML-5968] Update publishing dependencies (#181) Use spDist with manual upload to publish instead of spPublish because the upload step of spDist is flaky. --- dev/release.py | 2 +- project/plugins.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/release.py b/dev/release.py index b0853695..6483b47e 100755 --- a/dev/release.py +++ b/dev/release.py @@ -9,7 +9,7 @@ PUBLISH_MODES = { "local": "publishLocal", "m2": "publishM2", - "spark-package-publish": "spPublish", + "spark-package-publish": "spDist", } PUBLISH_DOCS_DEFAULT = True diff --git a/project/plugins.sbt b/project/plugins.sbt index 89f028f9..3e97ca0f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1,6 @@ // You may use this file to add plugin dependencies for sbt. resolvers += "Spark Packages repo" at "https://dl.bintray.com/spark-packages/maven/" -addSbtPlugin("org.spark-packages" %% "sbt-spark-package" % "0.2.5") +addSbtPlugin("org.spark-packages" %% "sbt-spark-package" % "0.2.6") // scalacOptions in (Compile,doc) := Seq("-groups", "-implicits") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.0")