This is an automated email from the ASF dual-hosted git repository. huaxingao pushed a commit to branch 1.10.x in repository https://gitbox.apache.org/repos/asf/iceberg.git
commit cc51275492910beca9cecd45209f464bfb039b70 Author: Daniel Weeks <[email protected]> AuthorDate: Tue Sep 30 16:03:14 2025 -0700 AWS: exclude logging classes from bundle (#14225) (cherry picked from commit 5c6629ef915061967fa67e4b981b0151cf8d42d4) --- aws-bundle/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aws-bundle/build.gradle b/aws-bundle/build.gradle index 9e937aa0ed..5b9054812a 100644 --- a/aws-bundle/build.gradle +++ b/aws-bundle/build.gradle @@ -53,7 +53,9 @@ project(":iceberg-aws-bundle") { } dependencies { - exclude(dependency('org.slf4j:slf4j-api')) + exclude(dependency('org.slf4j:.*')) + exclude(dependency('org.apache.logging.log4j:.*')) + exclude(dependency('org.apache.logging.slf4j:.*')) } // relocate AWS-specific versions
