Skip to content

Commit

Permalink
Aliyun: Add iceberg-aliyun to runtime Jars (apache#3725)
Browse files Browse the repository at this point in the history
  • Loading branch information
openinx authored Dec 15, 2021
1 parent 547e4e1 commit a029364
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 0 deletions.
5 changes: 5 additions & 0 deletions flink/v1.12/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@ project(':iceberg-flink:iceberg-flink-runtime-1.12') {
dependencies {
implementation project(':iceberg-flink:iceberg-flink-1.12')
implementation project(':iceberg-aws')
implementation(project(':iceberg-aliyun')) {
exclude group: 'edu.umd.cs.findbugs', module: 'findbugs'
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
exclude group: 'commons-logging', module: 'commons-logging'
}
implementation(project(':iceberg-nessie')) {
exclude group: 'com.google.code.findbugs', module: 'jsr305'
}
Expand Down
5 changes: 5 additions & 0 deletions flink/v1.13/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@ project(':iceberg-flink:iceberg-flink-runtime-1.13') {
dependencies {
implementation project(':iceberg-flink:iceberg-flink-1.13')
implementation project(':iceberg-aws')
implementation(project(':iceberg-aliyun')) {
exclude group: 'edu.umd.cs.findbugs', module: 'findbugs'
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
exclude group: 'commons-logging', module: 'commons-logging'
}
implementation(project(':iceberg-nessie')) {
exclude group: 'com.google.code.findbugs', module: 'jsr305'
}
Expand Down
5 changes: 5 additions & 0 deletions flink/v1.14/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,11 @@ project(':iceberg-flink:iceberg-flink-runtime-1.14') {
dependencies {
implementation project(':iceberg-flink:iceberg-flink-1.14')
implementation project(':iceberg-aws')
implementation(project(':iceberg-aliyun')) {
exclude group: 'edu.umd.cs.findbugs', module: 'findbugs'
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
exclude group: 'commons-logging', module: 'commons-logging'
}
implementation(project(':iceberg-nessie')) {
exclude group: 'com.google.code.findbugs', module: 'jsr305'
}
Expand Down
5 changes: 5 additions & 0 deletions hive-runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ project(':iceberg-hive-runtime') {
exclude group: 'com.google.code.findbugs', module: 'jsr305'
}
implementation project(':iceberg-aws')
implementation(project(':iceberg-aliyun')) {
exclude group: 'edu.umd.cs.findbugs', module: 'findbugs'
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
exclude group: 'commons-logging', module: 'commons-logging'
}
}

shadowJar {
Expand Down
5 changes: 5 additions & 0 deletions spark/v2.4/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,11 @@ project(':iceberg-spark:iceberg-spark-runtime') {
dependencies {
implementation project(':iceberg-spark:iceberg-spark2')
implementation project(':iceberg-aws')
implementation(project(':iceberg-aliyun')) {
exclude group: 'edu.umd.cs.findbugs', module: 'findbugs'
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
exclude group: 'commons-logging', module: 'commons-logging'
}
implementation project(':iceberg-hive-metastore')
implementation(project(':iceberg-nessie')) {
exclude group: 'com.google.code.findbugs', module: 'jsr305'
Expand Down
5 changes: 5 additions & 0 deletions spark/v3.0/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,11 @@ project(':iceberg-spark:iceberg-spark3-runtime') {
implementation project(':iceberg-spark:iceberg-spark3')
implementation project(':iceberg-spark:iceberg-spark3-extensions')
implementation project(':iceberg-aws')
implementation(project(':iceberg-aliyun')) {
exclude group: 'edu.umd.cs.findbugs', module: 'findbugs'
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
exclude group: 'commons-logging', module: 'commons-logging'
}
implementation project(':iceberg-hive-metastore')
implementation(project(':iceberg-nessie')) {
exclude group: 'com.google.code.findbugs', module: 'jsr305'
Expand Down
5 changes: 5 additions & 0 deletions spark/v3.1/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,11 @@ project(':iceberg-spark:iceberg-spark-runtime-3.1_2.12') {
implementation project(':iceberg-spark:iceberg-spark-3.1_2.12')
implementation project(':iceberg-spark:iceberg-spark-extensions-3.1_2.12')
implementation project(':iceberg-aws')
implementation(project(':iceberg-aliyun')) {
exclude group: 'edu.umd.cs.findbugs', module: 'findbugs'
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
exclude group: 'commons-logging', module: 'commons-logging'
}
implementation project(':iceberg-hive-metastore')
implementation(project(':iceberg-nessie')) {
exclude group: 'com.google.code.findbugs', module: 'jsr305'
Expand Down
5 changes: 5 additions & 0 deletions spark/v3.2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,11 @@ project(':iceberg-spark:iceberg-spark-runtime-3.2_2.12') {
implementation project(':iceberg-spark:iceberg-spark-3.2_2.12')
implementation project(':iceberg-spark:iceberg-spark-extensions-3.2_2.12')
implementation project(':iceberg-aws')
implementation(project(':iceberg-aliyun')) {
exclude group: 'edu.umd.cs.findbugs', module: 'findbugs'
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
exclude group: 'commons-logging', module: 'commons-logging'
}
implementation project(':iceberg-hive-metastore')
implementation(project(':iceberg-nessie')) {
exclude group: 'com.google.code.findbugs', module: 'jsr305'
Expand Down

0 comments on commit a029364

Please sign in to comment.