This is an automated email from the ASF dual-hosted git repository.

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 5149c8187a [spark] Exclude dependence in paimon-spark-ut (#7065)
5149c8187a is described below

commit 5149c8187ab254df8d13b3284a3efec9c5a93498
Author: Zouxxyy <[email protected]>
AuthorDate: Fri Jan 16 14:06:27 2026 +0800

    [spark] Exclude dependence in paimon-spark-ut (#7065)
---
 .github/workflows/publish_snapshot-jdk17.yml | 4 ++--
 .github/workflows/publish_snapshot.yml       | 2 +-
 paimon-spark/paimon-spark-3.2/pom.xml        | 6 ++++++
 paimon-spark/paimon-spark-3.3/pom.xml        | 6 ++++++
 paimon-spark/paimon-spark-3.4/pom.xml        | 6 ++++++
 paimon-spark/paimon-spark-3.5/pom.xml        | 6 ++++++
 paimon-spark/paimon-spark-4.0/pom.xml        | 6 ++++++
 7 files changed, 33 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/publish_snapshot-jdk17.yml 
b/.github/workflows/publish_snapshot-jdk17.yml
index c08d5e3e70..7aaecdf101 100644
--- a/.github/workflows/publish_snapshot-jdk17.yml
+++ b/.github/workflows/publish_snapshot-jdk17.yml
@@ -64,7 +64,7 @@ jobs:
           echo "</server></servers></settings>" >> $tmp_settings
         
           mvn --settings $tmp_settings clean install -Dgpg.skip -Drat.skip 
-DskipTests -Papache-release,spark4,flink1,paimon-lucene -pl 
org.apache.paimon:paimon-spark-4.0_2.13 -am
-          # skip deploy paimon-spark-common_2.13 and paimon-spark-ut_2.13, 
since they are already deployed in publish-snapshot.yml
-          mvn --settings $tmp_settings clean deploy -Dgpg.skip -Drat.skip 
-DskipTests -Papache-release,spark4,flink1,paimon-lucene -pl 
org.apache.paimon:paimon-spark4-common_2.13,org.apache.paimon:paimon-spark-4.0_2.13
+          # skip deploy paimon-spark-common_2.13 since they are already 
deployed in publish-snapshot.yml
+          mvn --settings $tmp_settings clean deploy -Dgpg.skip -Drat.skip 
-DskipTests -Papache-release,spark4,flink1,paimon-lucene -pl 
org.apache.paimon:paimon-spark4-common_2.13,org.apache.paimon:paimon-spark-ut_2.13,org.apache.paimon:paimon-spark-4.0_2.13
 
           rm $tmp_settings
diff --git a/.github/workflows/publish_snapshot.yml 
b/.github/workflows/publish_snapshot.yml
index ab6e08c669..95b5559400 100644
--- a/.github/workflows/publish_snapshot.yml
+++ b/.github/workflows/publish_snapshot.yml
@@ -67,6 +67,6 @@ jobs:
           
           mvn --settings $tmp_settings clean deploy -Dgpg.skip -Drat.skip 
-DskipTests -Papache-release,spark3,flink1 -pl 
'!paimon-faiss/paimon-faiss-jni,!paimon-faiss/paimon-faiss-index'
           # deploy for scala 2.13
-          mvn --settings $tmp_settings clean deploy -Dgpg.skip -Drat.skip 
-DskipTests -Papache-release,spark3,scala-2.13,flink1 -pl 
org.apache.paimon:paimon-spark-common_2.13,org.apache.paimon:paimon-spark3-common_2.13,org.apache.paimon:paimon-spark-ut_2.13,org.apache.paimon:paimon-spark-3.2_2.13,org.apache.paimon:paimon-spark-3.3_2.13,org.apache.paimon:paimon-spark-3.4_2.13,org.apache.paimon:paimon-spark-3.5_2.13
+          mvn --settings $tmp_settings clean deploy -Dgpg.skip -Drat.skip 
-DskipTests -Papache-release,spark3,scala-2.13,flink1 -pl 
org.apache.paimon:paimon-spark-common_2.13,org.apache.paimon:paimon-spark3-common_2.13,org.apache.paimon:paimon-spark-3.2_2.13,org.apache.paimon:paimon-spark-3.3_2.13,org.apache.paimon:paimon-spark-3.4_2.13,org.apache.paimon:paimon-spark-3.5_2.13
 
           rm $tmp_settings
diff --git a/paimon-spark/paimon-spark-3.2/pom.xml 
b/paimon-spark/paimon-spark-3.2/pom.xml
index 1a98ff45d3..d4adac7189 100644
--- a/paimon-spark/paimon-spark-3.2/pom.xml
+++ b/paimon-spark/paimon-spark-3.2/pom.xml
@@ -79,6 +79,12 @@ under the License.
             <version>${project.version}</version>
             <classifier>tests</classifier>
             <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>*</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
diff --git a/paimon-spark/paimon-spark-3.3/pom.xml 
b/paimon-spark/paimon-spark-3.3/pom.xml
index 5b4396de66..ad04e6c5fb 100644
--- a/paimon-spark/paimon-spark-3.3/pom.xml
+++ b/paimon-spark/paimon-spark-3.3/pom.xml
@@ -79,6 +79,12 @@ under the License.
             <version>${project.version}</version>
             <classifier>tests</classifier>
             <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>*</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
diff --git a/paimon-spark/paimon-spark-3.4/pom.xml 
b/paimon-spark/paimon-spark-3.4/pom.xml
index 9b940591ad..c0cee2d1dc 100644
--- a/paimon-spark/paimon-spark-3.4/pom.xml
+++ b/paimon-spark/paimon-spark-3.4/pom.xml
@@ -79,6 +79,12 @@ under the License.
             <version>${project.version}</version>
             <classifier>tests</classifier>
             <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>*</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
diff --git a/paimon-spark/paimon-spark-3.5/pom.xml 
b/paimon-spark/paimon-spark-3.5/pom.xml
index b71efe7d07..b66bc8b8b8 100644
--- a/paimon-spark/paimon-spark-3.5/pom.xml
+++ b/paimon-spark/paimon-spark-3.5/pom.xml
@@ -79,6 +79,12 @@ under the License.
             <version>${project.version}</version>
             <classifier>tests</classifier>
             <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>*</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
diff --git a/paimon-spark/paimon-spark-4.0/pom.xml 
b/paimon-spark/paimon-spark-4.0/pom.xml
index 6765796468..1e72e1e256 100644
--- a/paimon-spark/paimon-spark-4.0/pom.xml
+++ b/paimon-spark/paimon-spark-4.0/pom.xml
@@ -85,6 +85,12 @@ under the License.
             <version>${project.version}</version>
             <classifier>tests</classifier>
             <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>*</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>

Reply via email to