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

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


The following commit(s) were added to refs/heads/master by this push:
     new 635c79373 [KYUUBI #6698] Exclude transitive deps of paimon
635c79373 is described below

commit 635c79373df921018a48cb7c354719e5a9254641
Author: Cheng Pan <[email protected]>
AuthorDate: Wed Sep 18 11:12:20 2024 +0800

    [KYUUBI #6698] Exclude transitive deps of paimon
    
    # :mag: Description
    ## Issue References ๐Ÿ”—
    
    `paimon-spark-3.5` is a bundled jar but still pulls transitive deps.
    
    ## Describe Your Solution ๐Ÿ”ง
    
    Explicitly excluding transitive deps of paimon.
    
    ## Types of changes :bookmark:
    
    - [x] 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 ๐Ÿงช
    
    Pass GHA and manually checked.
    
    ---
    
    # 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 #6698 from pan3793/exclude-paimon.
    
    Closes #6698
    
    6048b1156 [Cheng Pan] Exclude transitive deps from paimon
    
    Authored-by: Cheng Pan <[email protected]>
    Signed-off-by: Cheng Pan <[email protected]>
---
 pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/pom.xml b/pom.xml
index 059584eb8..bc9abe337 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1215,6 +1215,12 @@
                 <groupId>org.apache.paimon</groupId>
                 <artifactId>${paimon.artifact}</artifactId>
                 <version>${paimon.version}</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>*</groupId>
+                        <artifactId>*</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
         </dependencies>
     </dependencyManagement>

Reply via email to