Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions aws-bundle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ project(":iceberg-aws-bundle") {

tasks.jar.dependsOn tasks.shadowJar

configurations {
implementation {
exclude group: 'org.slf4j'
exclude group: 'org.apache.logging.slf4j'
exclude group: 'org.apache.logging.log4j'
}
}

dependencies {
implementation platform(libs.awssdk.bom)
implementation libs.awssdk.s3accessgrants
Expand Down Expand Up @@ -52,12 +60,6 @@ project(":iceberg-aws-bundle") {
include 'NOTICE'
}

dependencies {
exclude(dependency('org.slf4j:.*'))
exclude(dependency('org.apache.logging.log4j:.*'))
exclude(dependency('org.apache.logging.slf4j:.*'))
}

// relocate AWS-specific versions
relocate 'org.apache.http', 'org.apache.iceberg.aws.shaded.org.apache.http'
relocate 'io.netty', 'org.apache.iceberg.aws.shaded.io.netty'
Expand Down
4 changes: 0 additions & 4 deletions aws-bundle/runtime-deps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,8 @@ io.netty:netty-transport-native-unix-common:4.1.132.Final
io.netty:netty-transport:4.1.132.Final
org.apache.httpcomponents:httpclient:4.5.13
org.apache.httpcomponents:httpcore:4.4.16
org.apache.logging.log4j:log4j-api:2.20.0
org.apache.logging.log4j:log4j-core:2.20.0
org.apache.logging.log4j:log4j-slf4j-impl:2.20.0
org.checkerframework:checker-qual:3.19.0
org.reactivestreams:reactive-streams:1.0.4
org.slf4j:slf4j-api:2.0.17
software.amazon.awssdk.crt:aws-crt:0.43.9
software.amazon.awssdk:annotations:2.42.33
software.amazon.awssdk:apache-client:2.42.33
Expand Down
Loading