[Dependence](Fe)Upgrade Fe dependencies (#24606)
* be scanner - Upgrade avro to 1.11.2 fe - Upgrade quartz to 2.5.0-rc1 - Upgrade maxcompute to 0.45-2-publish - Binding avro-ipc to 1.11.2 * Binding hbase version to 2.5.5 binding nimbusds version to 9.35
This commit is contained in:
@ -35,7 +35,25 @@ under the License.
|
||||
<spark.version>3.2.0</spark.version>
|
||||
<sparkbundle.version>3.2</sparkbundle.version>
|
||||
<janino.version>3.0.16</janino.version>
|
||||
<avro.version>1.11.2</avro.version>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.avro</groupId>
|
||||
<artifactId>avro</artifactId>
|
||||
<version>${avro.version}</version>
|
||||
<scope>provided</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.apache.avro</groupId>
|
||||
<artifactId>avro-tools</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@ -64,13 +82,6 @@ under the License.
|
||||
<dependency>
|
||||
<groupId>org.apache.avro</groupId>
|
||||
<artifactId>avro</artifactId>
|
||||
<scope>provided</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.apache.avro</groupId>
|
||||
<artifactId>avro-tools</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.hudi</groupId>
|
||||
|
||||
@ -708,7 +708,6 @@ under the License.
|
||||
<dependency>
|
||||
<groupId>org.quartz-scheduler</groupId>
|
||||
<artifactId>quartz</artifactId>
|
||||
<version>2.3.2</version>
|
||||
</dependency>
|
||||
|
||||
<!-- for arrow flight sql -->
|
||||
|
||||
48
fe/pom.xml
48
fe/pom.xml
@ -238,8 +238,8 @@ under the License.
|
||||
<!--The dependence of transitive dependence cannot be ruled out, only Saving the nation through twisted ways.-->
|
||||
<netty-3-test.version>3.10.6.Final</netty-3-test.version>
|
||||
<objenesis.version>2.1</objenesis.version>
|
||||
<grpc.version>1.56.0</grpc.version>
|
||||
<check.freamework.version>3.32.0</check.freamework.version>
|
||||
<grpc.version>1.58.0</grpc.version>
|
||||
<check.freamework.version>3.38.0</check.freamework.version>
|
||||
<protobuf.version>3.24.3</protobuf.version>
|
||||
<!-- we use protoc-jar-maven-plugin to generate protobuf generated code -->
|
||||
<!-- see https://repo.maven.apache.org/maven2/com/google/protobuf/protoc/ to get correct version -->
|
||||
@ -267,6 +267,8 @@ under the License.
|
||||
<spark.version>2.4.6</spark.version>
|
||||
<hive.version>3.1.3</hive.version>
|
||||
<hive.common.version>2.3.9</hive.common.version>
|
||||
<hbase.version>2.5.5</hbase.version>
|
||||
<nimbusds.version>9.35</nimbusds.version>
|
||||
<mapreduce.client.version>2.10.1</mapreduce.client.version>
|
||||
<calcite.version>1.33.0</calcite.version>
|
||||
<avatica.version>1.22.0</avatica.version>
|
||||
@ -275,9 +277,9 @@ under the License.
|
||||
you can find avro version info in iceberg mvn repository -->
|
||||
<iceberg.version>1.1.0</iceberg.version>
|
||||
<delta.version>3.0.0rc1</delta.version>
|
||||
<maxcompute.version>0.43.3-public</maxcompute.version>
|
||||
<maxcompute.version>0.45.2-public</maxcompute.version>
|
||||
<avro.version>1.11.2</avro.version>
|
||||
<arrow.version>13.0.0</arrow.version>
|
||||
<avro.version>1.11.1</avro.version>
|
||||
<!-- hudi -->
|
||||
<hudi.version>0.13.1</hudi.version>
|
||||
<presto.hadoop.version>2.7.4-11</presto.hadoop.version>
|
||||
@ -311,6 +313,8 @@ under the License.
|
||||
<kerby.version>2.0.3</kerby.version>
|
||||
<jettison.version>1.5.4</jettison.version>
|
||||
<vesoft.client.version>3.0.0</vesoft.client.version>
|
||||
<!--todo waiting release-->
|
||||
<quartz.version>2.3.2</quartz.version>
|
||||
<!-- paimon -->
|
||||
<paimon.version>0.4.0-incubating</paimon.version>
|
||||
<disruptor.version>3.4.4</disruptor.version>
|
||||
@ -358,6 +362,31 @@ under the License.
|
||||
</profiles>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.quartz-scheduler</groupId>
|
||||
<artifactId>quartz</artifactId>
|
||||
<version>${quartz.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.nimbusds</groupId>
|
||||
<artifactId>nimbus-jose-jwt</artifactId>
|
||||
<version>${nimbusds.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.hbase</groupId>
|
||||
<artifactId>hbase-protocol-shaded</artifactId>
|
||||
<version>${hbase.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.hbase</groupId>
|
||||
<artifactId>hbase-server</artifactId>
|
||||
<version>${hbase.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.hbase</groupId>
|
||||
<artifactId>hbase-client</artifactId>
|
||||
<version>${hbase.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.amazonaws</groupId>
|
||||
<artifactId>aws-java-sdk-bundle</artifactId>
|
||||
@ -1140,6 +1169,11 @@ under the License.
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.hadoop</groupId>
|
||||
<artifactId>hadoop-distcp</artifactId>
|
||||
<version>${hadoop.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.hadoop</groupId>
|
||||
<artifactId>hadoop-common</artifactId>
|
||||
@ -1213,7 +1247,11 @@ under the License.
|
||||
<artifactId>avro</artifactId>
|
||||
<version>${avro.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.avro</groupId>
|
||||
<artifactId>avro-ipc</artifactId>
|
||||
<version>${avro.version}</version>
|
||||
</dependency>
|
||||
<!-- https://mvnrepository.com/artifact/org.apache.hudi/hudi-common -->
|
||||
<dependency>
|
||||
<groupId>org.apache.hudi</groupId>
|
||||
|
||||
Reference in New Issue
Block a user