From 5c2abb8defbdb4b84e7d095b57a43d4aa3e45f7f Mon Sep 17 00:00:00 2001 From: Cheng Pan Date: Fri, 27 Oct 2023 10:46:18 +0800 Subject: [PATCH] [KYUUBI #5544] Release contains Spark 3.5 extension ### _Why are the changes needed?_ As we already added support for Spark 3.5, we should publish it to Maven Central in 1.8.0 ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.readthedocs.io/en/master/contributing/code/testing.html#running-tests) locally before make a pull request ### _Was this patch authored or co-authored using generative AI tooling?_ No Closes #5544 from pan3793/sext-3.5. Closes #5544 5d835f511 [Cheng Pan] Release contains Spark 3.5 extension Authored-by: Cheng Pan Signed-off-by: Cheng Pan --- build/release/release.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build/release/release.sh b/build/release/release.sh index 576cee266..49fef9f8b 100755 --- a/build/release/release.sh +++ b/build/release/release.sh @@ -124,6 +124,11 @@ upload_nexus_staging() { -s "${KYUUBI_DIR}/build/release/asf-settings.xml" \ -pl extensions/spark/kyuubi-extension-spark-3-3 -am + # Spark Extension Plugin for Spark 3.5 + ${KYUUBI_DIR}/build/mvn clean deploy -DskipTests -Papache-release,flink-provided,spark-provided,hive-provided,spark-3.5 \ + -s "${KYUUBI_DIR}/build/release/asf-settings.xml" \ + -pl extensions/spark/kyuubi-extension-spark-3-5 -am + # Spark TPC-DS/TPC-H Connector built with default Spark version (3.4) and Scala 2.13 ${KYUUBI_DIR}/build/mvn clean deploy -DskipTests -Papache-release,flink-provided,spark-provided,hive-provided,spark-3.4,scala-2.13 \ -s "${KYUUBI_DIR}/build/release/asf-settings.xml" \