This is an automated email from the ASF dual-hosted git repository. yihua pushed a commit to branch release-1.1.0 in repository https://gitbox.apache.org/repos/asf/hudi.git
commit 402accb181a8d5d70fda3398b7fb14526d7be7d9 Author: vamsikarnika <[email protected]> AuthorDate: Sat Nov 8 07:32:15 2025 +0530 fix: Exclude unnecessary netty dependencies from hudi jars (#14142) Co-authored-by: Vamsi <[email protected]> --- hudi-examples/hudi-examples-flink/pom.xml | 4 ++++ hudi-examples/hudi-examples-k8s/pom.xml | 4 ++++ hudi-flink-datasource/hudi-flink/pom.xml | 4 ++++ hudi-hadoop-mr/pom.xml | 4 ++++ hudi-sync/hudi-hive-sync/pom.xml | 4 ++++ pom.xml | 4 ++++ 6 files changed, 24 insertions(+) diff --git a/hudi-examples/hudi-examples-flink/pom.xml b/hudi-examples/hudi-examples-flink/pom.xml index 80021bde2f0b..847556adf32e 100644 --- a/hudi-examples/hudi-examples-flink/pom.xml +++ b/hudi-examples/hudi-examples-flink/pom.xml @@ -251,6 +251,10 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> </exclusion> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>*</artifactId> + </exclusion> </exclusions> </dependency> diff --git a/hudi-examples/hudi-examples-k8s/pom.xml b/hudi-examples/hudi-examples-k8s/pom.xml index 39d05f4418b0..ca73e784a89f 100644 --- a/hudi-examples/hudi-examples-k8s/pom.xml +++ b/hudi-examples/hudi-examples-k8s/pom.xml @@ -174,6 +174,10 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> </exclusion> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>*</artifactId> + </exclusion> </exclusions> </dependency> diff --git a/hudi-flink-datasource/hudi-flink/pom.xml b/hudi-flink-datasource/hudi-flink/pom.xml index 868020cbc457..f3cb9feb70cb 100644 --- a/hudi-flink-datasource/hudi-flink/pom.xml +++ b/hudi-flink-datasource/hudi-flink/pom.xml @@ -299,6 +299,10 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> </exclusion> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>*</artifactId> + </exclusion> </exclusions> </dependency> diff --git a/hudi-hadoop-mr/pom.xml b/hudi-hadoop-mr/pom.xml index 751e9bf0838d..60159c6112f8 100644 --- a/hudi-hadoop-mr/pom.xml +++ b/hudi-hadoop-mr/pom.xml @@ -91,6 +91,10 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> </exclusion> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>*</artifactId> + </exclusion> </exclusions> </dependency> <dependency> diff --git a/hudi-sync/hudi-hive-sync/pom.xml b/hudi-sync/hudi-hive-sync/pom.xml index c87801959bae..e539f00bdfca 100644 --- a/hudi-sync/hudi-hive-sync/pom.xml +++ b/hudi-sync/hudi-hive-sync/pom.xml @@ -214,6 +214,10 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> </exclusion> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>*</artifactId> + </exclusion> </exclusions> <scope>test</scope> </dependency> diff --git a/pom.xml b/pom.xml index badbafae3fe6..02aae8ba162a 100644 --- a/pom.xml +++ b/pom.xml @@ -1207,6 +1207,10 @@ <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>*</artifactId> + </exclusion> </exclusions> </dependency> <dependency>
