From 45252a49b4028bbffbb82ba334f636a8860702e0 Mon Sep 17 00:00:00 2001 From: William Hyun Date: Sat, 21 Nov 2020 09:35:47 -0800 Subject: [PATCH 1/3] [SPARK-XXX][BUILD] Update SBT to 1.4.3 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 5ec1d700fd2a8..622839d7f3c2d 100644 --- a/project/build.properties +++ b/project/build.properties @@ -14,4 +14,4 @@ # See the License for the specific language governing permissions and # limitations under the License. # -sbt.version=1.4.2 +sbt.version=1.4.3 From 9096677ae6f44fb7ac2b36f22ef4f5b3c427ea0b Mon Sep 17 00:00:00 2001 From: William Hyun Date: Sun, 22 Nov 2020 17:05:49 -0800 Subject: [PATCH 2/3] Use 1.4.4 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 622839d7f3c2d..c92de941c10be 100644 --- a/project/build.properties +++ b/project/build.properties @@ -14,4 +14,4 @@ # See the License for the specific language governing permissions and # limitations under the License. # -sbt.version=1.4.3 +sbt.version=1.4.4 From bff3db4e171206d46793771a185d9f8484662437 Mon Sep 17 00:00:00 2001 From: William Hyun Date: Sun, 22 Nov 2020 20:16:34 -0800 Subject: [PATCH 3/3] Add filter --- dev/mima | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/mima b/dev/mima index f324c5c00a45c..d214bb96e09a3 100755 --- a/dev/mima +++ b/dev/mima @@ -25,8 +25,8 @@ FWDIR="$(cd "`dirname "$0"`"/..; pwd)" cd "$FWDIR" SPARK_PROFILES=${1:-"-Pmesos -Pkubernetes -Pyarn -Pspark-ganglia-lgpl -Pkinesis-asl -Phive-thriftserver -Phive"} -TOOLS_CLASSPATH="$(build/sbt -DcopyDependencies=false "export tools/fullClasspath" | tail -n1)" -OLD_DEPS_CLASSPATH="$(build/sbt -DcopyDependencies=false $SPARK_PROFILES "export oldDeps/fullClasspath" | tail -n1)" +TOOLS_CLASSPATH="$(build/sbt -DcopyDependencies=false "export tools/fullClasspath" | grep jar | tail -n1)" +OLD_DEPS_CLASSPATH="$(build/sbt -DcopyDependencies=false $SPARK_PROFILES "export oldDeps/fullClasspath" | grep jar | tail -n1)" rm -f .generated-mima*