This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch branch-2.1-lakehouse in repository https://gitbox.apache.org/repos/asf/doris.git
commit 7f50edd05c839373b7b740cba15c0f8ead8b3ecf Author: Mingyu Chen (Rayner) <[email protected]> AuthorDate: Fri Jan 17 10:05:04 2025 +0800 [opt](mvn) remove iceberg-aws-bundle and upgrade aws sdk to 2.29.26 (#47117) 1. No need to depend on iceberg-aws-bundle, because we've already declare the depends we need separately. 2. upgrade aws sdk to 2.29.26 to prepare for s3 tables --- fe/fe-core/pom.xml | 9 ++------- fe/pom.xml | 5 ----- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/fe/fe-core/pom.xml b/fe/fe-core/pom.xml index 89a221d901a..07ac4acec14 100644 --- a/fe/fe-core/pom.xml +++ b/fe/fe-core/pom.xml @@ -494,10 +494,10 @@ under the License. <artifactId>s3</artifactId> <version>${awssdk.version}</version> <exclusions> - <exclusion> + <!--exclusion> <groupId>software.amazon.awssdk</groupId> <artifactId>apache-client</artifactId> - </exclusion> + </exclusion--> </exclusions> </dependency> <!-- Fix it--> @@ -560,11 +560,6 @@ under the License. <groupId>org.apache.iceberg</groupId> <artifactId>iceberg-aws</artifactId> </dependency> - <dependency> - <groupId>org.apache.iceberg</groupId> - <artifactId>iceberg-aws-bundle</artifactId> - <scope>runtime</scope> - </dependency> <dependency> <groupId>org.apache.paimon</groupId> <artifactId>paimon-core</artifactId> diff --git a/fe/pom.xml b/fe/pom.xml index b6493a54072..097e1514a93 100644 --- a/fe/pom.xml +++ b/fe/pom.xml @@ -1283,11 +1283,6 @@ under the License. <artifactId>iceberg-aws</artifactId> <version>${iceberg.version}</version> </dependency> - <dependency> - <groupId>org.apache.iceberg</groupId> - <artifactId>iceberg-aws-bundle</artifactId> - <version>${iceberg.version}</version> - </dependency> <dependency> <groupId>com.aliyun.odps</groupId> <artifactId>odps-sdk-core</artifactId> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
