| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | project(":iceberg-aws-bundle") { |
| |
|
| | apply plugin: 'com.github.johnrengelman.shadow' |
| |
|
| | tasks.jar.dependsOn tasks.shadowJar |
| |
|
| | dependencies { |
| | implementation platform(libs.awssdk.bom) |
| | implementation "software.amazon.awssdk:apache-client" |
| | implementation "software.amazon.awssdk:auth" |
| | implementation "software.amazon.awssdk:iam" |
| | implementation "software.amazon.awssdk:sso" |
| | implementation "software.amazon.awssdk:s3" |
| | implementation "software.amazon.awssdk:kms" |
| | implementation "software.amazon.awssdk:glue" |
| | implementation "software.amazon.awssdk:sts" |
| | implementation "software.amazon.awssdk:dynamodb" |
| | implementation "software.amazon.awssdk:lakeformation" |
| | } |
| |
|
| | shadowJar { |
| | archiveClassifier.set(null) |
| | zip64 true |
| |
|
| | |
| | from(projectDir) { |
| | include 'LICENSE' |
| | include 'NOTICE' |
| | } |
| |
|
| | |
| | relocate 'org.apache.http', 'org.apache.iceberg.aws.shaded.org.apache.http' |
| | relocate 'io.netty', 'org.apache.iceberg.aws.shaded.io.netty' |
| | } |
| |
|
| | jar { |
| | enabled = false |
| | } |
| | } |
| |
|