This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit c1dcce42d49c8b4fcbc150416a56a19aee5b6310 Author: Calvin Kirs <[email protected]> AuthorDate: Sat Mar 2 16:13:29 2024 +0800 [Chore](dependency)Upgrade some dependencies of FE (#31667) - upgrade aws-java-sdk to 1.12.669 -binding netty component version - exclude ranger's storage plugins(es and solr) --- fe/pom.xml | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/fe/pom.xml b/fe/pom.xml index 5ebd759f013..2ec27ce1450 100644 --- a/fe/pom.xml +++ b/fe/pom.xml @@ -321,7 +321,7 @@ under the License. <hamcrest.version>2.1</hamcrest.version> <httpclient.version>4.5.13</httpclient.version> <httpcore.version>4.4.15</httpcore.version> - <aws-java-sdk.version>1.12.625</aws-java-sdk.version> + <aws-java-sdk.version>1.12.669</aws-java-sdk.version> <mariadb-java-client.version>3.0.9</mariadb-java-client.version> <dlf-metastore-client-hive.version>0.2.14</dlf-metastore-client-hive.version> <hadoop.version>3.3.6</hadoop.version> @@ -836,6 +836,27 @@ under the License. <artifactId>netty-transport-udt</artifactId> <version>${netty-all.version}</version> </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-transport-sctp</artifactId> + <version>${netty-all.version}</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-transport-sctp</artifactId> + <version>${netty-all.version}</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-transport-classes-kqueue</artifactId> + <version>${netty-all.version}</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-transport-native-epoll</artifactId> + <classifier>linux-x86_64</classifier> + <version>${netty-all.version}</version> + </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport-rxtx</artifactId> @@ -915,6 +936,22 @@ under the License. <groupId>com.amazonaws</groupId> <artifactId>*</artifactId> </exclusion> + <exclusion> + <groupId>org.apache.solr</groupId> + <artifactId>*</artifactId> + </exclusion> + <exclusion> + <groupId>org.elasticsearch.client</groupId> + <artifactId>*</artifactId> + </exclusion> + <exclusion> + <groupId>org.elasticsearch.plugin</groupId> + <artifactId>*</artifactId> + </exclusion> + <exclusion> + <groupId>org.elasticsearch</groupId> + <artifactId>*</artifactId> + </exclusion> </exclusions> </dependency> <dependency> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
