From c08abcf655bc46dfafc8e2554c3e7d92dbecee22 Mon Sep 17 00:00:00 2001 From: Cheng Pan Date: Sat, 17 Feb 2024 18:39:41 +0800 Subject: [PATCH] [KYUUBI #5981] Deploy Spark Hive connector with Scala 2.13 to Maven Central MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # :mag: Description ## Issue References ๐Ÿ”— This pull request closes #5981 ## Describe Your Solution ๐Ÿ”ง As title ## Types of changes :bookmark: - [ ] Bugfix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Test Plan ๐Ÿงช N/A, will test in v1.8.1 release process. --- # Checklist ๐Ÿ“ - [x] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) **Be nice. Be informative.** Closes #6060 from pan3793/hive-scala213. Closes #5981 506ab4883 [Cheng Pan] [KYUUBI #5981] Deploy Spark Hive connector with Scala 2.13 to Maven Central Authored-by: Cheng Pan Signed-off-by: Cheng Pan (cherry picked from commit eae9ffdbe4faf56edf229f23ef1ad50fc75afde0) Signed-off-by: Cheng Pan --- build/release/release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/release/release.sh b/build/release/release.sh index 49fef9f8b24..91c7f94b74e 100755 --- a/build/release/release.sh +++ b/build/release/release.sh @@ -129,10 +129,10 @@ upload_nexus_staging() { -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 + # Spark Hive/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" \ - -pl extensions/spark/kyuubi-spark-connector-tpcds,extensions/spark/kyuubi-spark-connector-tpch -am + -pl extensions/spark/kyuubi-spark-connector-hive,extensions/spark/kyuubi-spark-connector-tpcds,extensions/spark/kyuubi-spark-connector-tpch -am # All modules including Spark Extension Plugin and Connectors built with default Spark version (3.4) and default Scala version (2.12) ${KYUUBI_DIR}/build/mvn clean deploy -DskipTests -Papache-release,flink-provided,spark-provided,hive-provided,spark-3.4 \