This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch branch-1.9
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/branch-1.9 by this push:
new fa3974248 [KYUUBI #6698] Exclude transitive deps of paimon
fa3974248 is described below
commit fa3974248f21229811403b836d3fc1660a7a986e
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]>
(cherry picked from commit 635c79373df921018a48cb7c354719e5a9254641)
Signed-off-by: Cheng Pan <[email protected]>
---
pom.xml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/pom.xml b/pom.xml
index 1795af064..41517ed0b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1184,6 +1184,12 @@
<groupId>org.apache.paimon</groupId>
<artifactId>paimon-spark-${spark.binary.version}</artifactId>
<version>${paimon.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>*</groupId>
+ <artifactId>*</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
</dependencies>
</dependencyManagement>