| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.apache</groupId> |
| <artifactId>apache</artifactId> |
| <version>29</version> |
| </parent> |
| <groupId>org.apache.doris</groupId> |
| <artifactId>fe</artifactId> |
| <version>${revision}</version> |
| <packaging>pom</packaging> |
| <name>Doris FE Project Parent POM</name> |
| <url>https://doris.apache.org/</url> |
| <licenses> |
| <license> |
| <name>Apache 2.0 License</name> |
| <url>https://www.apache.org/licenses/LICENSE-2.0.html</url> |
| <distribution>repo</distribution> |
| </license> |
| </licenses> |
| <scm> |
| <connection>scm:git:https://git@github.com/apache/doris.git</connection> |
| <developerConnection>scm:git:https://git@github.com/apache/doris.git</developerConnection> |
| <url>scm:git:https://git@github.com/apache/doris.git</url> |
| <tag>HEAD</tag> |
| </scm> |
| <issueManagement> |
| <system>GitHub</system> |
| <url>https://github.com/apache/doris/issues</url> |
| </issueManagement> |
| <mailingLists> |
| <mailingList> |
| <name>Dev Mailing List</name> |
| <post>dev@doris.apache.org</post> |
| <subscribe>dev-subscribe@doris.apache.org</subscribe> |
| <unsubscribe>dev-unsubscribe@doris.apache.org</unsubscribe> |
| </mailingList> |
| <mailingList> |
| <name>Commits Mailing List</name> |
| <post>commits@doris.apache.org</post> |
| <subscribe>commits-subscribe@doris.apache.org</subscribe> |
| <unsubscribe>commits-unsubscribe@doris.apache.org</unsubscribe> |
| </mailingList> |
| </mailingLists> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>flatten-maven-plugin</artifactId> |
| <version>1.2.5</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.commonjava.maven.plugins</groupId> |
| <artifactId>directory-maven-plugin</artifactId> |
| <version>0.1</version> |
| <executions> |
| <execution> |
| <id>directories</id> |
| <goals> |
| <goal>directory-of</goal> |
| </goals> |
| <phase>initialize</phase> |
| <configuration> |
| <property>fe.dir</property> |
| <project> |
| <groupId>org.apache.doris</groupId> |
| <artifactId>fe</artifactId> |
| </project> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>license-maven-plugin</artifactId> |
| <version>2.0.0</version> |
| <executions> |
| <execution> |
| <id>add-third-party</id> |
| <goals> |
| <goal>add-third-party</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.jacoco</groupId> |
| <artifactId>jacoco-maven-plugin</artifactId> |
| <version>${jacoco.version}</version> |
| <executions> |
| <execution> |
| <id>default-prepare-agent</id> |
| <goals> |
| <goal>prepare-agent</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>flatten-maven-plugin</artifactId> |
| <version>1.2.5</version> |
| <configuration> |
| <updatePomFile>true</updatePomFile> |
| <flattenMode>bom</flattenMode> |
| </configuration> |
| <executions> |
| <execution> |
| <id>flatten</id> |
| <phase>process-resources</phase> |
| <goals> |
| <goal>flatten</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>flatten.clean</id> |
| <phase>clean</phase> |
| <goals> |
| <goal>clean</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| <version>3.1.2</version> |
| <dependencies> |
| <dependency> |
| <groupId>com.puppycrawl.tools</groupId> |
| <artifactId>checkstyle</artifactId> |
| <version>9.3</version> |
| </dependency> |
| </dependencies> |
| <configuration> |
| <configLocation>check/checkstyle/checkstyle.xml</configLocation> |
| <suppressionsLocation>check/checkstyle/suppressions.xml</suppressionsLocation> |
| <encoding>UTF-8</encoding> |
| <consoleOutput>true</consoleOutput> |
| <failsOnError>true</failsOnError> |
| <linkXRef>false</linkXRef> |
| <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| <excludes> |
| **/apache/doris/thrift/**/*, |
| **/apache/parquet/**/* |
| </excludes> |
| </configuration> |
| <executions> |
| <execution> |
| <id>validate</id> |
| <phase>validate</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.sonarsource.scanner.maven</groupId> |
| <artifactId>sonar-maven-plugin</artifactId> |
| <version>3.9.1.2184</version> |
| </plugin> |
| <plugin> |
| <groupId>org.jacoco</groupId> |
| <artifactId>jacoco-maven-plugin</artifactId> |
| <version>${jacoco.version}</version> |
| <executions> |
| <execution> |
| <id>default-prepare-agent</id> |
| <goals> |
| <goal>prepare-agent</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| <extensions> |
| <extension> |
| <groupId>kr.motd.maven</groupId> |
| <artifactId>os-maven-plugin</artifactId> |
| <version>1.7.0</version> |
| </extension> |
| </extensions> |
| </build> |
| <modules> |
| <module>fe-common</module> |
| <module>fe-core</module> |
| <module>hive-udf</module> |
| <module>be-java-extensions</module> |
| </modules> |
| <properties> |
| <doris.hive.catalog.shade.version>3.1.0</doris.hive.catalog.shade.version> |
| <!-- iceberg 1.9.1 depends avro on 1.12 --> |
| <avro.version>1.12.1</avro.version> |
| <parquet.version>1.16.0</parquet.version> |
| <spark.version>3.4.3</spark.version> |
| <hudi.version>1.0.2</hudi.version> |
| <obs.dependency.scope>compile</obs.dependency.scope> |
| <cos.dependency.scope>compile</cos.dependency.scope> |
| <qcloud-java-sdk.version>2.0.1</qcloud-java-sdk.version> |
| <tencentcos.version>8.2.7</tencentcos.version> |
| <cos-api.version>5.6.211</cos-api.version> |
| <tencentcloud-sdk-java-sts.version>3.1.678</tencentcloud-sdk-java-sts.version> |
| <huaweicloud-sdk-iam.version>3.1.20</huaweicloud-sdk-iam.version> |
| <esdk-obs.version>[3.21.11,)</esdk-obs.version> |
| <huaweiobs.version>3.1.1-hw-46</huaweiobs.version> |
| <!--suppress UnresolvedMavenProperty --> |
| <doris.thirdparty>${fe.dir}/../thirdparty</doris.thirdparty> |
| <!--suppress UnresolvedMavenProperty --> |
| <doris.home>${fe.dir}/../</doris.home> |
| <revision>1.2-SNAPSHOT</revision> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <maven.compiler.source>1.8</maven.compiler.source> |
| <maven.compiler.target>1.8</maven.compiler.target> |
| <!--plugin parameters--> |
| <skip.plugin>false</skip.plugin> |
| <sonar.organization>apache</sonar.organization> |
| <sonar.host.url>https://sonarcloud.io</sonar.host.url> |
| <cglib.version>2.2</cglib.version> |
| <commons-cli.version>1.4</commons-cli.version> |
| <commons-filerupload.version>1.6.0</commons-filerupload.version> |
| <commons-configuration2.version>2.11.0</commons-configuration2.version> |
| <commons-codec.version>1.13</commons-codec.version> |
| <commons-lang.version>2.6</commons-lang.version> |
| <commons-lang3.version>3.19.0</commons-lang3.version> |
| <commons-pool2.version>2.2</commons-pool2.version> |
| <commons-pool.version>1.5.1</commons-pool.version> |
| <commons-text.version>1.10.0</commons-text.version> |
| <commons-math3.version>3.6.1</commons-math3.version> |
| <commons-validator.version>1.9.0</commons-validator.version> |
| <gson.version>2.10.1</gson.version> |
| <guava.version>33.2.1-jre</guava.version> |
| <jackson.version>2.16.0</jackson.version> |
| <javassist.version>3.18.2-GA</javassist.version> |
| <javax.servlet-api.version>3.1.0</javax.servlet-api.version> |
| <je.version>18.3.14-doris-SNAPSHOT</je.version> |
| <jmockit.version>1.49</jmockit.version> |
| <commons-io.version>2.18.0</commons-io.version> |
| <commons-beanutils.version>1.11.0</commons-beanutils.version> |
| <json-simple.version>1.1.1</json-simple.version> |
| <junit.version>5.14.1</junit.version> |
| <hikaricp.version>6.0.0</hikaricp.version> |
| <thrift.version>0.16.0</thrift.version> |
| <tomcat-embed.version>9.0.104</tomcat-embed.version> |
| <log4j2.version>2.25.2</log4j2.version> |
| <log4j-1.2.version>2.25.2</log4j-1.2.version> |
| <slf4j.version>2.0.17</slf4j.version> |
| <metrics-core.version>4.0.2</metrics-core.version> |
| <!--Netty 4.1.94 is not compatible with arrow flight.--> |
| <!--Need to ensure that the version is the same as in arrow/java/pom.xml or compatible with it.--> |
| <netty-all.version>4.1.128.Final</netty-all.version> |
| <!--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> |
| <!--ensure JDK 17 compatibility by removing dependency on internal X509V1CertImpl class--> |
| <wildfly-openssl.version>2.2.5.Final</wildfly-openssl.version> |
| <wildfly-common.version>2.0.1</wildfly-common.version> |
| <!-- NOTE: Using grpc-java whose version is newer than 1.34.0 will break the build on CentOS 6 due to the obsolete GLIBC --> |
| <grpc-java.version>1.34.0</grpc-java.version> |
| <!--Need to ensure that the version is the same as in arrow/java/pom.xml or compatible with it.--> |
| <grpc.version>1.65.1</grpc.version> |
| <check.freamework.version>3.52.1</check.freamework.version> |
| <protobuf.version>3.25.8</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 --> |
| <protoc.artifact.version>3.24.3</protoc.artifact.version> |
| <protoc.artifact>com.google.protobuf:protoc:${protoc.artifact.version}</protoc.artifact> |
| <grpc.java.artifact>io.grpc:protoc-gen-grpc-java:${grpc-java.version}</grpc.java.artifact> |
| <protoparser.version>3.1.5</protoparser.version> |
| <snappy-java.version>1.1.10.5</snappy-java.version> |
| <automaton.version>1.11-8</automaton.version> |
| <generex.version>1.0.1</generex.version> |
| <jetty-servlet.version>11.0.26</jetty-servlet.version> |
| <logging-interceptor.version>4.12.0</logging-interceptor.version> |
| <okhttp.version>4.9.3</okhttp.version> |
| <okio.version>3.4.0</okio.version> |
| <snakeyaml.version>2.0</snakeyaml.version> |
| <validation-api.version>2.0.1.Final</validation-api.version> |
| <zjsonpatch.version>0.2.3</zjsonpatch.version> |
| <kafka-clients.version>3.4.0</kafka-clients.version> |
| <oshi-core.version>6.4.5</oshi-core.version> |
| <xnio-nio.version>3.8.14.Final</xnio-nio.version> |
| <javax.annotation-api.version>1.3.2</javax.annotation-api.version> |
| <javax.activation.version>1.2.0</javax.activation.version> |
| <jaxws-api.version>2.3.0</jaxws-api.version> |
| <RoaringBitmap.version>0.8.13</RoaringBitmap.version> |
| <hudi-spark.version>hudi-spark3.4.x</hudi-spark.version> |
| <hive.version>3.1.3</hive.version> |
| <hive.common.version>2.3.9</hive.common.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> |
| <!-- ATTN: avro version must be consistent with Iceberg version --> |
| <!-- Please modify iceberg.version and avro.version together, |
| you can find avro version info in iceberg mvn repository --> |
| <iceberg.version>1.9.1</iceberg.version> |
| <maxcompute.version>0.49.0-public</maxcompute.version> |
| <!-- Arrow 19.0.1 will MacOS compile error and decimal type error when convert to Parquet |
| https://github.com/apache/doris/pull/51217--> |
| <arrow.version>17.0.0</arrow.version> |
| <presto.hadoop.version>2.7.4-11</presto.hadoop.version> |
| <presto.hive.version>3.0.0-8</presto.hive.version> |
| <!-- lakesoul --> |
| <lakesoul.version>2.6.2</lakesoul.version> |
| |
| |
| <commons-collections.version>4.5.0</commons-collections.version> |
| <commons-compress.version>1.27.1</commons-compress.version> |
| <scala.version>2.12.10</scala.version> |
| <kryo.version>4.0.2</kryo.version> |
| <lombok.version>1.18.24</lombok.version> |
| <tree-printer.version>1.2</tree-printer.version> |
| <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.669</aws-java-sdk.version> |
| <mariadb-java-client.version>3.0.9</mariadb-java-client.version> |
| <hadoop.version>3.4.2</hadoop.version> |
| <re2j.version>1.8</re2j.version> |
| <hadoop.thirdparty.guava.version>1.2.0</hadoop.thirdparty.guava.version> |
| <hadoop.thirdparty.protobuf_3_25.version>1.5.0</hadoop.thirdparty.protobuf_3_25.version> |
| <hbase.version>2.6.3</hbase.version> |
| <jline.version>3.30.6</jline.version> |
| <hbase-shaded-gson.version>4.1.7</hbase-shaded-gson.version> |
| <antlr4.version>4.13.1</antlr4.version> |
| <joda.version>2.8.1</joda.version> |
| <project.scm.id>github</project.scm.id> |
| <spring.version>3.5.7</spring.version> |
| <spring-framework.version>6.2.12</spring-framework.version> |
| <orc.version>1.8.4</orc.version> |
| <zookeeper.version>3.9.3</zookeeper.version> |
| <velocity-engine-core.version>2.4</velocity-engine-core.version> |
| <ranger-plugins-common.version>2.7.0</ranger-plugins-common.version> |
| <bcprov-jdk15on.version>1.70</bcprov-jdk15on.version> |
| <woodstox.version>6.5.1</woodstox.version> |
| <kerby.version>2.0.3</kerby.version> |
| <jettison.version>1.5.4</jettison.version> |
| <jetty.version>12.0.29</jetty.version> |
| <jetty-http.version>11.0.26</jetty-http.version> |
| <immutables.version>2.9.3</immutables.version> |
| <ivy.version>2.5.2</ivy.version> |
| <icu4j.version>78.1</icu4j.version> |
| <ini4j.version>0.5.4</ini4j.version> |
| <!--todo waiting release--> |
| <quartz.version>2.3.2</quartz.version> |
| <aircompressor.version>0.27</aircompressor.version> |
| <!-- paimon --> |
| <paimon.version>1.1.1</paimon.version> |
| <disruptor.version>3.4.4</disruptor.version> |
| <!-- arrow flight sql --> |
| <arrow.vector.classifier>shade-format-flatbuffers</arrow.vector.classifier> |
| <flatbuffers.version>1.12.0</flatbuffers.version> |
| <jacoco.version>0.8.10</jacoco.version> |
| <trino.version>435</trino.version> |
| <nimbusds.version>10.0.1</nimbusds.version> |
| <jakarta.annotation-api.version>2.1.1</jakarta.annotation-api.version> |
| <asm.version>9.4</asm.version> |
| <airlift.concurrent.version>202</airlift.concurrent.version> |
| <azure.sdk.version>1.3.2</azure.sdk.version> |
| <azure.sdk.batch.version>12.22.0</azure.sdk.batch.version> |
| <semver4j.version>5.3.0</semver4j.version> |
| <aliyun-sdk-oss.version>3.15.0</aliyun-sdk-oss.version> |
| <!--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.--> |
| <awssdk.version>2.29.52</awssdk.version> |
| <s3tables.catalog.version>0.1.4</s3tables.catalog.version> |
| <mockito.version>4.11.0</mockito.version> |
| </properties> |
| <profiles> |
| <profile> |
| <id>general-env</id> |
| <activation> |
| <property> |
| <name>!env.CUSTOM_MAVEN_REPO</name> |
| </property> |
| </activation> |
| <repositories> |
| <repository> |
| <id>central</id> |
| <name>central maven repo https</name> |
| <url>https://repo.maven.apache.org/maven2</url> |
| </repository> |
| <repository> |
| <id>snapshots</id> |
| <name>apache snapshots maven repo https</name> |
| <url>https://repository.apache.org/content/repositories/snapshots/</url> |
| </repository> |
| </repositories> |
| <pluginRepositories> |
| <pluginRepository> |
| <id>central</id> |
| <url>https://repo.maven.apache.org/maven2</url> |
| </pluginRepository> |
| </pluginRepositories> |
| </profile> |
| </profiles> |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-bom</artifactId> |
| <version>${netty-all.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <dependency> |
| <groupId>io.grpc</groupId> |
| <artifactId>grpc-bom</artifactId> |
| <version>${grpc.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson</groupId> |
| <artifactId>jackson-bom</artifactId> |
| <version>${jackson.version}</version> |
| <scope>import</scope> |
| <type>pom</type> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ivy</groupId> |
| <artifactId>ivy</artifactId> |
| <version>${ivy.version}</version> |
| </dependency> |
| <!-- has conflict with jakarta.servlet-api--> |
| <dependency> |
| <groupId>org.eclipse.jetty.toolchain</groupId> |
| <artifactId>jetty-jakarta-servlet-api</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.ibm.icu</groupId> |
| <artifactId>icu4j</artifactId> |
| <version>${icu4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.ini4j</groupId> |
| <artifactId>ini4j</artifactId> |
| <version>${ini4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.junit</groupId> |
| <artifactId>junit-bom</artifactId> |
| <version>${junit.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-bom</artifactId> |
| <version>${jetty.version}</version> |
| <scope>import</scope> |
| <type>pom</type> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.jetty.http2</groupId> |
| <artifactId>http2-client</artifactId> |
| <version>${jetty-http.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.jetty.http2</groupId> |
| <artifactId>http2-server</artifactId> |
| <version>${jetty-http.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.jetty.http2</groupId> |
| <artifactId>http2-http-client-transport</artifactId> |
| <version>${jetty-http.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.glassfish</groupId> |
| <artifactId>javax.el</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| <!--not allowed to use jackson 1.x in fe module--> |
| <dependency> |
| <groupId>org.codehaus.jackson</groupId> |
| <artifactId>jackson-mapper-asl</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>io.airlift</groupId> |
| <artifactId>aircompressor</artifactId> |
| <version>${aircompressor.version}</version> |
| </dependency> |
| <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.orc</groupId> |
| <artifactId>orc-core</artifactId> |
| <version>${orc.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-framework-bom</artifactId> |
| <version>${spring-framework.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-logging</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter</artifactId> |
| <version>${spring.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>log4j</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-slf4j-impl</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>bom</artifactId> |
| <version>${awssdk.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <!--AWS BOM does not include this dependency--> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>bundle</artifactId> |
| <version>${awssdk.version}</version> |
| </dependency> |
| <!-- woodstox --> |
| <dependency> |
| <groupId>com.fasterxml.woodstox</groupId> |
| <artifactId>woodstox-core</artifactId> |
| <version>${woodstox.version}</version> |
| </dependency> |
| <!-- bcprov-jdk15on --> |
| <dependency> |
| <groupId>org.bouncycastle</groupId> |
| <artifactId>bcprov-jdk15on</artifactId> |
| <version>${bcprov-jdk15on.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-dependencies</artifactId> |
| <version>${spring.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-devtools</artifactId> |
| <version>${spring.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-data-ldap</artifactId> |
| <version>${spring.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-jetty</artifactId> |
| <version>${spring.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.apache.tomcat</groupId> |
| <artifactId>tomcat-embed-el</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-configuration-processor</artifactId> |
| <version>${spring.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-web</artifactId> |
| <version>${spring.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-tomcat</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>validator</groupId> |
| <artifactId>hibernate-validator</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.tomcat</groupId> |
| <artifactId>tomcat-embed-jasper</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-slf4j-impl</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-tomcat</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-client</artifactId> |
| <version>${hadoop.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>javax.servlet</groupId> |
| <artifactId>servlet-api</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-yarn-common</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-yarn-api</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-reload4j</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>com.google.re2j</groupId> |
| <artifactId>re2j</artifactId> |
| <version>${re2j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-client-api</artifactId> |
| <version>${hadoop.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop.thirdparty</groupId> |
| <artifactId>hadoop-shaded-guava</artifactId> |
| <version>${hadoop.thirdparty.guava.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop.thirdparty</groupId> |
| <artifactId>hadoop-shaded-protobuf_3_25</artifactId> |
| <version>${hadoop.thirdparty.protobuf_3_25.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-auth</artifactId> |
| <version>${hadoop.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-reload4j</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-aliyun</artifactId> |
| <version>${hadoop.version}</version> |
| <exclusions> |
| <!-- pls confirm if this is a mandatory dependency --> |
| <exclusion> |
| <groupId>org.ini4j</groupId> |
| <artifactId>ini4j</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.doris</groupId> |
| <artifactId>hive-catalog-shade</artifactId> |
| <version>${doris.hive.catalog.shade.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.kerby</groupId> |
| <artifactId>kerb-simplekdc</artifactId> |
| <version>${kerby.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.kerby</groupId> |
| <artifactId>kerb-core</artifactId> |
| <version>${kerby.version}</version> |
| </dependency> |
| <!-- anyway to avoid declare zookeeper again --> |
| <dependency> |
| <groupId>org.apache.zookeeper</groupId> |
| <artifactId>zookeeper</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>fe-common</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/cglib/cglib --> |
| <dependency> |
| <groupId>cglib</groupId> |
| <artifactId>cglib</artifactId> |
| <version>${cglib.version}</version> |
| <exclusions> |
| <exclusion> |
| <artifactId>asm</artifactId> |
| <groupId>asm</groupId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/commons-cli/commons-cli --> |
| <dependency> |
| <groupId>commons-cli</groupId> |
| <artifactId>commons-cli</artifactId> |
| <version>${commons-cli.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-beanutils</groupId> |
| <artifactId>commons-beanutils</artifactId> |
| <version>${commons-beanutils.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-fileupload</groupId> |
| <artifactId>commons-fileupload</artifactId> |
| <version>${commons-filerupload.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-configuration2</artifactId> |
| <version>${commons-configuration2.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec --> |
| <dependency> |
| <groupId>commons-codec</groupId> |
| <artifactId>commons-codec</artifactId> |
| <version>${commons-codec.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang --> |
| <!-- upgrade commons-lang from 2.4 to 2.6 to fix incompatibility of with versioning scheme of Java 9 and later --> |
| <dependency> |
| <groupId>commons-lang</groupId> |
| <artifactId>commons-lang</artifactId> |
| <version>${commons-lang.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-lang3</artifactId> |
| <version>${commons-lang3.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-math3 --> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-math3</artifactId> |
| <version>${commons-math3.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 --> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-pool2</artifactId> |
| <version>${commons-pool2.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-pool</groupId> |
| <artifactId>commons-pool</artifactId> |
| <version>${commons-pool.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-text</artifactId> |
| <version>${commons-text.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/commons-validator/commons-validator --> |
| <dependency> |
| <groupId>commons-validator</groupId> |
| <artifactId>commons-validator</artifactId> |
| <version>${commons-validator.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson --> |
| <dependency> |
| <groupId>com.google.code.gson</groupId> |
| <artifactId>gson</artifactId> |
| <version>${gson.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/com.google.guava/guava --> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| <version>${guava.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava-testlib</artifactId> |
| <version>${guava.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/org.javassist/javassist --> |
| <dependency> |
| <groupId>org.javassist</groupId> |
| <artifactId>javassist</artifactId> |
| <version>${javassist.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api --> |
| <dependency> |
| <groupId>javax.servlet</groupId> |
| <artifactId>javax.servlet-api</artifactId> |
| <version>${javax.servlet-api.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.doris</groupId> |
| <artifactId>je</artifactId> |
| <version>${je.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/org.jmockit/jmockit --> |
| <dependency> |
| <groupId>org.jmockit</groupId> |
| <artifactId>jmockit</artifactId> |
| <version>${jmockit.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| <version>${commons-io.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.googlecode.json-simple</groupId> |
| <artifactId>json-simple</artifactId> |
| <version>${json-simple.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/org.apache.thrift/libthrift --> |
| <dependency> |
| <groupId>org.apache.thrift</groupId> |
| <artifactId>libthrift</artifactId> |
| <version>${thrift.version}</version> |
| <exclusions> |
| <!-- thrift 0.13 depends on httpclient 4.5.10, should exclude it --> |
| <exclusion> |
| <artifactId>httpclient</artifactId> |
| <groupId>org.apache.httpcomponents</groupId> |
| </exclusion> |
| <exclusion> |
| <artifactId>httpcore</artifactId> |
| <groupId>org.apache.httpcomponents</groupId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-core</artifactId> |
| <version>${log4j2.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-iostreams</artifactId> |
| <version>${log4j2.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-slf4j2-impl</artifactId> |
| <version>2.20.0</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-core</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>jcl-over-slf4j</artifactId> |
| <version>${slf4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>log4j-over-slf4j</artifactId> |
| <version>${slf4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-api</artifactId> |
| <version>${log4j2.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.lmax</groupId> |
| <artifactId>disruptor</artifactId> |
| <version>${disruptor.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/io.dropwizard.metrics/metrics-core --> |
| <dependency> |
| <groupId>io.dropwizard.metrics</groupId> |
| <artifactId>metrics-core</artifactId> |
| <version>${metrics-core.version}</version> |
| </dependency> |
| <!-- velocity-engine-core dependency--> |
| <dependency> |
| <groupId>org.apache.velocity</groupId> |
| <artifactId>velocity-engine-core</artifactId> |
| <version>${velocity-engine-core.version}</version> |
| </dependency> |
| <!-- ranger-plugins-common --> |
| <dependency> |
| <groupId>org.apache.ranger</groupId> |
| <artifactId>ranger-plugins-common</artifactId> |
| <version>${ranger-plugins-common.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.hive</groupId> |
| <artifactId>hive-storage-api</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.elasticsearch.client</groupId> |
| <artifactId>elasticsearch-rest-high-level-client</artifactId> |
| </exclusion> |
| <!--ranger audit only depends on aws logs, which is provided alone--> |
| <exclusion> |
| <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> |
| <exclusion> |
| <groupId>com.sun.jersey</groupId> |
| <artifactId>jersey-bundle</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.objenesis</groupId> |
| <artifactId>objenesis</artifactId> |
| <version>${objenesis.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.wildfly.openssl</groupId> |
| <artifactId>wildfly-openssl</artifactId> |
| <version>${wildfly-openssl.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.wildfly.common</groupId> |
| <artifactId>wildfly-common</artifactId> |
| <version>${wildfly-common.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java --> |
| <dependency> |
| <groupId>com.google.protobuf</groupId> |
| <artifactId>protobuf-java</artifactId> |
| <version>${protobuf.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.protobuf</groupId> |
| <artifactId>protobuf-java-util</artifactId> |
| <version>${protobuf.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.checkerframework</groupId> |
| <artifactId>checker</artifactId> |
| <version>${check.freamework.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/com.squareup/protoparser --> |
| <dependency> |
| <groupId>com.squareup</groupId> |
| <artifactId>protoparser</artifactId> |
| <version>${protoparser.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/org.xerial.snappy/snappy-java --> |
| <dependency> |
| <groupId>org.xerial.snappy</groupId> |
| <artifactId>snappy-java</artifactId> |
| <version>${snappy-java.version}</version> |
| </dependency> |
| <!-- for k8s client--> |
| <!-- https://mvnrepository.com/artifact/dk.brics.automaton/automaton --> |
| <dependency> |
| <groupId>dk.brics.automaton</groupId> |
| <artifactId>automaton</artifactId> |
| <version>${automaton.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/com.github.mifmif/generex --> |
| <dependency> |
| <groupId>com.github.mifmif</groupId> |
| <artifactId>generex</artifactId> |
| <version>${generex.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/logging-interceptor --> |
| <dependency> |
| <groupId>com.squareup.okhttp3</groupId> |
| <artifactId>logging-interceptor</artifactId> |
| <version>${logging-interceptor.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp --> |
| <dependency> |
| <groupId>com.squareup.okhttp3</groupId> |
| <artifactId>okhttp</artifactId> |
| <version>${okhttp.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/com.squareup.okio/okio --> |
| <dependency> |
| <groupId>com.squareup.okio</groupId> |
| <artifactId>okio</artifactId> |
| <version>${okio.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml --> |
| <dependency> |
| <groupId>org.yaml</groupId> |
| <artifactId>snakeyaml</artifactId> |
| <version>${snakeyaml.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/javax.validation/validation-api --> |
| <dependency> |
| <groupId>javax.validation</groupId> |
| <artifactId>validation-api</artifactId> |
| <version>${validation-api.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>${slf4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| <version>${slf4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-1.2-api</artifactId> |
| <version>${log4j-1.2.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.kafka</groupId> |
| <artifactId>kafka-clients</artifactId> |
| <version>${kafka-clients.version}</version> |
| <!--routine load test use kafka-clients--> |
| <scope>test</scope> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/com.github.oshi/oshi-core --> |
| <dependency> |
| <groupId>com.github.oshi</groupId> |
| <artifactId>oshi-core</artifactId> |
| <version>${oshi-core.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/org.jboss.xnio/xnio-nio --> |
| <dependency> |
| <groupId>org.jboss.xnio</groupId> |
| <artifactId>xnio-nio</artifactId> |
| <version>${xnio-nio.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.jboss.xnio</groupId> |
| <artifactId>xnio-api</artifactId> |
| <version>${xnio-nio.version}</version> |
| </dependency> |
| <!-- support jdk9 --> |
| <dependency> |
| <groupId>javax.annotation</groupId> |
| <artifactId>javax.annotation-api</artifactId> |
| <version>${javax.annotation-api.version}</version> |
| </dependency> |
| <!-- support jdk9 --> |
| <dependency> |
| <groupId>com.sun.activation</groupId> |
| <artifactId>javax.activation</artifactId> |
| <version>${javax.activation.version}</version> |
| </dependency> |
| <!-- support jdk11 --> |
| <!-- https://mvnrepository.com/artifact/javax.xml.ws/jaxws-api --> |
| <dependency> |
| <groupId>javax.xml.ws</groupId> |
| <artifactId>jaxws-api</artifactId> |
| <version>${jaxws-api.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.roaringbitmap</groupId> |
| <artifactId>RoaringBitmap</artifactId> |
| <version>${RoaringBitmap.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-hdfs</artifactId> |
| <version>${hadoop.version}</version> |
| <exclusions> |
| <exclusion> |
| <artifactId>servlet-api</artifactId> |
| <groupId>javax.servlet</groupId> |
| </exclusion> |
| <exclusion> |
| <groupId>io.netty</groupId> |
| <artifactId>netty</artifactId> |
| </exclusion> |
| <exclusion> |
| <artifactId>jackson-databind</artifactId> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| </exclusion> |
| <exclusion> |
| <groupId>javax.ws.rs</groupId> |
| <artifactId>jsr311-api</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-azure</artifactId> |
| <version>${hadoop.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-aws</artifactId> |
| <version>${hadoop.version}</version> |
| <exclusions> |
| <!-- NB: Exclude the AWS SDK bundle because it’s a large monolithic package, and we only need the S3 modules to reduce dependency size.--> |
| <exclusion> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>bundle</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| </exclusion> |
| <exclusion> |
| <artifactId>servlet-api</artifactId> |
| <groupId>javax.servlet</groupId> |
| </exclusion> |
| <!-- https://github.com/aws/aws-sdk-java/issues/1032 --> |
| <exclusion> |
| <groupId>com.amazonaws</groupId> |
| <artifactId>aws-java-sdk-s3</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>com.amazonaws</groupId> |
| <artifactId>aws-java-sdk-bundle</artifactId> |
| </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> |
| <version>${hadoop.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>jdk.tools</groupId> |
| <artifactId>jdk.tools</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-util</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-webapp</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-servlet</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>javax.servlet.jsp</groupId> |
| <artifactId>jsp-api</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-all</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-reload4j</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-yarn-client</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-mapreduce-client</artifactId> |
| <version>${hadoop.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>javax.servlet</groupId> |
| <artifactId>servlet-api</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <!-- jettison --> |
| <dependency> |
| <groupId>org.codehaus.jettison</groupId> |
| <artifactId>jettison</artifactId> |
| <version>${jettison.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/org.apache.iceberg/iceberg-core --> |
| <dependency> |
| <groupId>org.apache.iceberg</groupId> |
| <artifactId>iceberg-core</artifactId> |
| <version>${iceberg.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.iceberg</groupId> |
| <artifactId>iceberg-api</artifactId> |
| <version>${iceberg.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.iceberg</groupId> |
| <artifactId>iceberg-aws</artifactId> |
| <version>${iceberg.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.aliyun.odps</groupId> |
| <artifactId>odps-sdk-core</artifactId> |
| <version>${maxcompute.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.apache.arrow</groupId> |
| <artifactId>arrow-vector</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.ini4j</groupId> |
| <artifactId>ini4j</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <!-- For Iceberg, must be consistent with Iceberg version --> |
| <dependency> |
| <groupId>org.apache.avro</groupId> |
| <artifactId>avro</artifactId> |
| <version>${avro.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.avro</groupId> |
| <artifactId>avro-ipc</artifactId> |
| <version>${avro.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.avro</groupId> |
| <artifactId>avro-mapred</artifactId> |
| <version>${avro.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/org.apache.hudi/hudi-common --> |
| <dependency> |
| <groupId>org.apache.hudi</groupId> |
| <artifactId>hudi-common</artifactId> |
| <version>${hudi.version}</version> |
| <exclusions> |
| <exclusion> |
| <artifactId>commons-httpclient</artifactId> |
| <groupId>commons-httpclient</groupId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.glassfish.web</groupId> |
| <artifactId>javax.servlet.jsp</artifactId> |
| </exclusion> |
| <exclusion> |
| <artifactId>netty-all</artifactId> |
| <groupId>io.netty</groupId> |
| </exclusion> |
| <exclusion> |
| <artifactId>log4j</artifactId> |
| <groupId>log4j</groupId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.hive</groupId> |
| <artifactId>hive-storage-api</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-servlet</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-security</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hbase</groupId> |
| <artifactId>hbase-server</artifactId> |
| <version>${hbase.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.apache.hbase</groupId> |
| <artifactId>hbase-hadoop2-compat</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.hbase.thirdparty</groupId> |
| <artifactId>hbase-shaded-netty</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.tomcat</groupId> |
| <artifactId>tomcat-jasper</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hbase</groupId> |
| <artifactId>hbase-client</artifactId> |
| <version>${hbase.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.apache.hbase</groupId> |
| <artifactId>hbase-hadoop2-compat</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.hbase.thirdparty</groupId> |
| <artifactId>hbase-shaded-netty</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-servlet</artifactId> |
| <version>${jetty-servlet.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.jline</groupId> |
| <artifactId>jline</artifactId> |
| <version>${jline.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/org.apache.hudi/hudi-hadoop-mr --> |
| <dependency> |
| <groupId>org.apache.hudi</groupId> |
| <artifactId>hudi-hadoop-mr</artifactId> |
| <version>${hudi.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.parquet</groupId> |
| <artifactId>parquet-avro</artifactId> |
| <version>${parquet.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.parquet</groupId> |
| <artifactId>parquet-column</artifactId> |
| <version>${parquet.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.parquet</groupId> |
| <artifactId>parquet-hadoop</artifactId> |
| <version>${parquet.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.parquet</groupId> |
| <artifactId>parquet-common</artifactId> |
| <version>${parquet.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-collections4</artifactId> |
| <version>${commons-collections.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-compress</artifactId> |
| <version>${commons-compress.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.scala-lang</groupId> |
| <artifactId>scala-library</artifactId> |
| <version>${scala.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.esotericsoftware</groupId> |
| <artifactId>kryo-shaded</artifactId> |
| <version>${kryo.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.spark</groupId> |
| <artifactId>spark-catalyst_2.12</artifactId> |
| <version>${spark.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --> |
| <dependency> |
| <groupId>org.projectlombok</groupId> |
| <artifactId>lombok</artifactId> |
| <version>${lombok.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/hu.webarticum/tree-printer --> |
| <dependency> |
| <groupId>hu.webarticum</groupId> |
| <artifactId>tree-printer</artifactId> |
| <version>${tree-printer.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.hamcrest</groupId> |
| <artifactId>hamcrest</artifactId> |
| <version>${hamcrest.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>httpclient</artifactId> |
| <version>${httpclient.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>httpcore</artifactId> |
| <version>${httpcore.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.amazonaws</groupId> |
| <artifactId>aws-java-sdk-s3</artifactId> |
| <version>${aws-java-sdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.amazonaws</groupId> |
| <artifactId>aws-java-sdk-glue</artifactId> |
| <version>${aws-java-sdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.amazonaws</groupId> |
| <artifactId>aws-java-sdk-dynamodb</artifactId> |
| <version>${aws-java-sdk.version}</version> |
| </dependency> |
| <!--only for apache ranger audit--> |
| <dependency> |
| <groupId>com.amazonaws</groupId> |
| <artifactId>aws-java-sdk-logs</artifactId> |
| <version>${aws-java-sdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.amazonaws</groupId> |
| <artifactId>aws-java-sdk-sts</artifactId> |
| <version>${aws-java-sdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.mariadb.jdbc</groupId> |
| <artifactId>mariadb-java-client</artifactId> |
| <version>${mariadb-java-client.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hive</groupId> |
| <artifactId>hive-common</artifactId> |
| <version>${hive.common.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>io.netty</groupId> |
| <artifactId>netty</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.eclipse.jetty.aggregate</groupId> |
| <artifactId>jetty-all</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-mapreduce-client-core</artifactId> |
| <version>${hadoop.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>javax.servlet</groupId> |
| <artifactId>servlet-api</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>io.netty</groupId> |
| <artifactId>netty</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-mapreduce-client-common</artifactId> |
| <version>${hadoop.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>io.netty</groupId> |
| <artifactId>netty</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>com.zaxxer</groupId> |
| <artifactId>HikariCP</artifactId> |
| <version>${hikaricp.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/joda-time/joda-time --> |
| <dependency> |
| <groupId>joda-time</groupId> |
| <artifactId>joda-time</artifactId> |
| <version>${joda.version}</version> |
| </dependency> |
| <!--tomcat--> |
| <dependency> |
| <groupId>org.apache.tomcat.embed</groupId> |
| <artifactId>tomcat-embed-el</artifactId> |
| <version>${tomcat-embed.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-tcnative-boringssl-static</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.google.flatbuffers</groupId> |
| <artifactId>flatbuffers-java</artifactId> |
| <version>${flatbuffers.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.arrow</groupId> |
| <artifactId>arrow-vector</artifactId> |
| <version>${arrow.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.arrow</groupId> |
| <artifactId>arrow-memory-netty</artifactId> |
| <version>${arrow.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.arrow</groupId> |
| <artifactId>arrow-memory-netty-buffer-patch</artifactId> |
| <version>${arrow.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.arrow</groupId> |
| <artifactId>flight-core</artifactId> |
| <version>${arrow.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.arrow</groupId> |
| <artifactId>flight-sql</artifactId> |
| <version>${arrow.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.arrow</groupId> |
| <artifactId>flight-sql-jdbc-driver</artifactId> |
| <version>${arrow.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.arrow</groupId> |
| <artifactId>arrow-memory-core</artifactId> |
| <version>${arrow.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.arrow</groupId> |
| <artifactId>arrow-jdbc</artifactId> |
| <version>${arrow.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.immutables</groupId> |
| <artifactId>value</artifactId> |
| <version>${immutables.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>io.trino</groupId> |
| <artifactId>trino-main</artifactId> |
| <version>${trino.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jdk14</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>log4j-over-slf4j</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-to-slf4j</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>jcl-over-slf4j</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| </exclusion> |
| <exclusion> |
| <artifactId>logback-core</artifactId> |
| <groupId>ch.qos.logback</groupId> |
| </exclusion> |
| <exclusion> |
| <artifactId>bootstrap</artifactId> |
| <groupId>io.airlift</groupId> |
| </exclusion> |
| <exclusion> |
| <artifactId>re2j</artifactId> |
| <groupId>io.trino</groupId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>com.nimbusds</groupId> |
| <artifactId>nimbus-jose-jwt</artifactId> |
| <version>${nimbusds.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>jakarta.annotation</groupId> |
| <artifactId>jakarta.annotation-api</artifactId> |
| <version>${jakarta.annotation-api.version}</version> |
| </dependency> |
| <dependency> |
| <artifactId>asm</artifactId> |
| <groupId>org.ow2.asm</groupId> |
| <version>${asm.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>io.airlift</groupId> |
| <artifactId>concurrent</artifactId> |
| <version>${airlift.concurrent.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.bouncycastle</groupId> |
| <artifactId>bcprov-jdk15on</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.azure</groupId> |
| <artifactId>azure-sdk-bom</artifactId> |
| <version>${azure.sdk.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <!-- tencent COS --> |
| <dependency> |
| <groupId>com.qcloud</groupId> |
| <artifactId>cos_api</artifactId> |
| <version>${cos-api.version}</version> |
| <scope>${cos.dependency.scope}</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-core</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>com.thoughtworks.xstream</groupId> |
| <artifactId>xstream</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.bouncycastle</groupId> |
| <artifactId>bcprov-jdk15on</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>com.qcloud</groupId> |
| <artifactId>qcloud-java-sdk</artifactId> |
| <version>${qcloud-java-sdk.version}</version> |
| <scope>${cos.dependency.scope}</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.qcloud.cos</groupId> |
| <artifactId>hadoop-cos</artifactId> |
| <version>${tencentcos.version}</version> |
| <scope>${cos.dependency.scope}</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.json</groupId> |
| <artifactId>json</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <!-- tencent cloud sts --> |
| <dependency> |
| <groupId>com.tencentcloudapi</groupId> |
| <artifactId>tencentcloud-sdk-java-sts</artifactId> |
| <version>${tencentcloud-sdk-java-sts.version}</version> |
| <scope>${cos.dependency.scope}</scope> |
| </dependency> |
| <!--Huawei OBS--> |
| <dependency> |
| <groupId>com.huaweicloud</groupId> |
| <artifactId>esdk-obs-java-bundle</artifactId> |
| <version>${esdk-obs.version}</version> |
| <scope>${obs.dependency.scope}</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.huaweicloud</groupId> |
| <artifactId>hadoop-huaweicloud</artifactId> |
| <version>${huaweiobs.version}</version> |
| <scope>${obs.dependency.scope}</scope> |
| <exclusions> |
| <exclusion> |
| <artifactId>jackson-databind</artifactId> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <!-- huawei cloud sts --> |
| <dependency> |
| <groupId>com.huaweicloud.sdk</groupId> |
| <artifactId>huaweicloud-sdk-iam</artifactId> |
| <version>${huaweicloud-sdk-iam.version}</version> |
| <scope>${obs.dependency.scope}</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.semver4j</groupId> |
| <artifactId>semver4j</artifactId> |
| <version>${semver4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <version>${mockito.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-inline</artifactId> |
| <version>${mockito.version}</version> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-slf4j2-impl</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-core</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-1.2-api</artifactId> |
| </dependency> |
| <!-- test dependency --> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-engine</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.vintage</groupId> |
| <artifactId>junit-vintage-engine</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-params</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.platform</groupId> |
| <artifactId>junit-platform-launcher</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.jmockit</groupId> |
| <artifactId>jmockit</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <!-- should be used in test scope --> |
| <dependency> |
| <groupId>org.awaitility</groupId> |
| <artifactId>awaitility</artifactId> |
| </dependency> |
| |
| </dependencies> |
| <reporting> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| </plugin> |
| </plugins> |
| </reporting> |
| <repositories> |
| <!--todo waiting hive-catalog release--> |
| <repository> |
| <id>snapshots</id> |
| <name>apache snapshots maven repo https</name> |
| <url>https://repository.apache.org/content/repositories/snapshots/</url> |
| <snapshots> |
| <updatePolicy>always</updatePolicy> |
| </snapshots> |
| </repository> |
| </repositories> |
| </project> |