Skip to content

Commit 2a99c81

Browse files
committed
[chore](dep)Upgrade dependencies
1 parent 11a038d commit 2a99c81

2 files changed

Lines changed: 34 additions & 2 deletions

File tree

fe/hive-udf/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,20 @@ under the License.
5353
<artifactId>hive-exec</artifactId>
5454
<version>${hive.version}</version>
5555
<scope>provided</scope>
56+
<exclusions>
57+
<exclusion>
58+
<groupId>org.apache.calcite</groupId>
59+
<artifactId>calcite-core</artifactId>
60+
</exclusion>
61+
<exclusion>
62+
<groupId>org.apache.calcite</groupId>
63+
<artifactId>calcite-druid</artifactId>
64+
</exclusion>
65+
<exclusion>
66+
<groupId>log4j</groupId>
67+
<artifactId>log4j</artifactId>
68+
</exclusion>
69+
</exclusions>
5670
</dependency>
5771
<dependency>
5872
<groupId>${project.groupId}</groupId>

fe/pom.xml

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ under the License.
268268
<commons-codec.version>1.13</commons-codec.version>
269269
<commons-lang.version>2.6</commons-lang.version>
270270
<commons-lang3.version>3.19.0</commons-lang3.version>
271+
<commons-net.version>3.13.0</commons-net.version>
271272
<commons-pool2.version>2.2</commons-pool2.version>
272273
<commons-pool.version>1.5.1</commons-pool.version>
273274
<commons-text.version>1.10.0</commons-text.version>
@@ -293,7 +294,7 @@ under the License.
293294
<metrics-core.version>4.0.2</metrics-core.version>
294295
<!--Netty 4.1.94 is not compatible with arrow flight.-->
295296
<!--Need to ensure that the version is the same as in arrow/java/pom.xml or compatible with it.-->
296-
<netty-all.version>4.1.132.Final</netty-all.version>
297+
<netty-all.version>4.2.15.Final</netty-all.version>
297298
<!--The dependence of transitive dependence cannot be ruled out, only Saving the nation through twisted ways.-->
298299
<netty-3-test.version>3.10.6.Final</netty-3-test.version>
299300
<objenesis.version>2.1</objenesis.version>
@@ -403,8 +404,10 @@ under the License.
403404
<jakarta.annotation-api.version>2.1.1</jakarta.annotation-api.version>
404405
<asm.version>9.4</asm.version>
405406
<airlift.concurrent.version>202</airlift.concurrent.version>
406-
<azure.sdk.version>1.3.4</azure.sdk.version>
407+
<azure.sdk.version>1.3.7</azure.sdk.version>
407408
<azure.sdk.batch.version>12.22.0</azure.sdk.batch.version>
409+
<msal4j.version>1.25.0</msal4j.version>
410+
<azure.keyvault.core.version>1.2.6</azure.keyvault.core.version>
408411
<semver4j.version>5.3.0</semver4j.version>
409412
<aliyun-sdk-oss.version>3.15.0</aliyun-sdk-oss.version>
410413
<!--Fixes the regression described in https://github.com/aws/aws-sdk-java-v2/issues/5805 that forced us to downgrade aws-s3 to version 2.29.x.-->
@@ -868,6 +871,11 @@ under the License.
868871
<artifactId>commons-lang3</artifactId>
869872
<version>${commons-lang3.version}</version>
870873
</dependency>
874+
<dependency>
875+
<groupId>commons-net</groupId>
876+
<artifactId>commons-net</artifactId>
877+
<version>${commons-net.version}</version>
878+
</dependency>
871879
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-math3 -->
872880
<dependency>
873881
<groupId>org.apache.commons</groupId>
@@ -1835,6 +1843,16 @@ under the License.
18351843
<type>pom</type>
18361844
<scope>import</scope>
18371845
</dependency>
1846+
<dependency>
1847+
<groupId>com.microsoft.azure</groupId>
1848+
<artifactId>msal4j</artifactId>
1849+
<version>${msal4j.version}</version>
1850+
</dependency>
1851+
<dependency>
1852+
<groupId>com.microsoft.azure</groupId>
1853+
<artifactId>azure-keyvault-core</artifactId>
1854+
<version>${azure.keyvault.core.version}</version>
1855+
</dependency>
18381856
<!-- tencent COS -->
18391857
<dependency>
18401858
<groupId>com.qcloud</groupId>

0 commit comments

Comments
 (0)