From 04874fe2aaad26a59e3fcae4df589073ad378bf1 Mon Sep 17 00:00:00 2001 From: panbingkun Date: Tue, 15 Oct 2024 15:25:42 -0700 Subject: [PATCH] [SPARK-49922][BUILD] Upgrade `sbt-assembly` to `2.3.0` ### What changes were proposed in this pull request? The pr aims to upgrade `sbt-assembly` from `2.2.0` to `2.3.0` ### Why are the changes needed? - `sbt-assembly`, the full release notes: https://github.com/sbt/sbt-assembly/releases/tag/v2.3.0 - Bug fixed: Fixes assembly not creating parent directories by Roiocam in https://github.com/sbt/sbt-assembly/pull/525 Throws error when a misconfigured assemblyOutputPath is detected by hygt in https://github.com/sbt/sbt-assembly/pull/523 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass GA. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #48409 from panbingkun/SPARK-49922. Authored-by: panbingkun Signed-off-by: Dongjoon Hyun --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 67d739452d8da..b2d0177e6a411 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -24,7 +24,7 @@ libraryDependencies += "com.puppycrawl.tools" % "checkstyle" % "10.17.0" // checkstyle uses guava 33.1.0-jre. libraryDependencies += "com.google.guava" % "guava" % "33.1.0-jre" -addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.2.0") +addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.0") addSbtPlugin("com.github.sbt" % "sbt-eclipse" % "6.2.0")