| <?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.apache.maven.plugins</groupId> |
| <artifactId>maven-enforcer-plugin</artifactId> |
| <version>3.6.2</version> |
| <executions> |
| <execution> |
| <id>enforce-maven-version</id> |
| <goals> |
| <goal>enforce</goal> |
| </goals> |
| <configuration> |
| <rules> |
| <requireMavenVersion> |
| <version>[3.9.0,)</version> |
| </requireMavenVersion> |
| </rules> |
| </configuration> |
| </execution> |
| </executions> |
| </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> |
| </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> |
| <!-- Explicitly set config_loc so that checkstyle.xml can reference sibling |
| files via ${config_loc}/suppressions.xml etc. |
| maven-checkstyle-plugin 3.0+ sets this automatically, but older |
| versions do not, causing "Property ${config_loc} has not been set". |
| ${maven.multiModuleProjectDirectory} always points to the directory |
| from which Maven was invoked (the fe/ root), so this works for all |
| submodules regardless of nesting depth. Requires Maven 3.3.1+. --> |
| <propertyExpansion>config_loc=${maven.multiModuleProjectDirectory}/check/checkstyle</propertyExpansion> |
| <excludes> |
| **/apache/doris/thrift/**/*, |
| **/apache/parquet/**/*, |
| <!-- be-java-extensions/hadoop-deps' verbatim copy of |
| org.apache.hadoop.fs.FileSystem. Scoped to fs/ so that |
| fe-connector-hms' org/apache/hadoop/hive/** stays checked. --> |
| **/apache/hadoop/fs/**/* |
| </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> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-shade-plugin</artifactId> |
| <version>${maven-shade-plugin.version}</version> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| <extensions> |
| <extension> |
| <groupId>kr.motd.maven</groupId> |
| <artifactId>os-maven-plugin</artifactId> |
| <version>1.7.0</version> |
| </extension> |
| <extension> |
| <groupId>org.apache.maven.extensions</groupId> |
| <artifactId>maven-build-cache-extension</artifactId> |
| <version>1.2.2</version> |
| </extension> |
| </extensions> |
| </build> |
| <modules> |
| <module>fe-foundation</module> |
| <module>fe-kerberos</module> |
| <module>fe-common</module> |
| <module>fe-trino-connector-common</module> |
| <module>fe-catalog</module> |
| <module>fe-filesystem</module> |
| <module>fe-extension-spi</module> |
| <module>fe-connector</module> |
| <module>fe-extension-loader</module> |
| <module>fe-sql-parser</module> |
| <module>fe-core</module> |
| <module>hive-udf</module> |
| <module>be-java-extensions</module> |
| <module>fe-authentication</module> |
| <module>fe-thrift</module> |
| <module>fe-type</module> |
| <module>fe-grpc</module> |
| </modules> |
| <properties> |
| <doris.hive.catalog.shade.version>3.1.1</doris.hive.catalog.shade.version> |
| <!-- iceberg 1.9.1 depends avro on 1.12 --> |
| <avro.version>1.12.1</avro.version> |
| <parquet.version>1.17.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>17</maven.compiler.source> |
| <maven.compiler.target>17</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.15.1</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-net.version>3.13.0</commons-net.version> |
| <commons-pool2.version>2.2</commons-pool2.version> |
| <commons-pool.version>1.5.1</commons-pool.version> |
| <commons-text.version>1.15.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 2.16.0 is affected by multiple 2026 parser and polymorphic-deserialization |
| vulnerabilities, including CVE-2026-54512. Version 2.21.5 contains the complete fixes. --> |
| <jackson.version>2.21.5</jackson.version> |
| <javassist.version>3.18.2-GA</javassist.version> |
| <javax.servlet-api.version>3.1.0</javax.servlet-api.version> |
| <!-- Jetty 12.0.38 (jetty-ee10-servlet) invokes jakarta.servlet.http.Cookie#getAttributes(), |
| which only exists since Jakarta Servlet 6.1. Pin the API to 6.1.0 so it matches the |
| jetty version; otherwise the transitive 6.0.0 from spring-boot triggers NoSuchMethodError |
| when the FE HTTP server writes a Set-Cookie (SameSite) header. --> |
| <jakarta.servlet-api.version>6.1.0</jakarta.servlet-api.version> |
| <je.version>18.3.14-doris-SNAPSHOT</je.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> |
| <open-json.version>1.8</open-json.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.4</log4j2.version> |
| <log4j-1.2.version>2.25.4</log4j-1.2.version> |
| <slf4j.version>2.0.17</slf4j.version> |
| <metrics-core.version>4.0.2</metrics-core.version> |
| <resilience4j.version>2.4.0</resilience4j.version> |
| <!-- Keep Netty compatible with Arrow Flight SQL 19 and other transitive Netty users. --> |
| <netty-all.version>4.2.15.Final</netty-all.version> |
| <!-- OpenTelemetry versions before 1.62.0 allow unbounded allocation while parsing W3C |
| baggage (CVE-2026-45292); align the complete OpenTelemetry graph on the fixed BOM. --> |
| <opentelemetry.version>1.62.0</opentelemetry.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.53.0</check.freamework.version> |
| <cel.version>0.12.0</cel.version> |
| <!-- FE-only Arrow 19 startup POC: align protobuf runtime with Arrow Java 19's protobuf BOM. --> |
| <protobuf.version>4.33.4</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> |
| <jetty-websocket.version>9.4.58.v20250814</jetty-websocket.version> |
| <okhttp.version>5.3.2</okhttp.version> |
| <snakeyaml.version>2.0</snakeyaml.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> |
| <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.10.1</iceberg.version> |
| <!-- 0.56.1 has bug that "SplitMode" in query response may not be set--> |
| <maxcompute.version>0.53.2-public</maxcompute.version> |
| <!-- FE-only POC: validate whether Arrow Java 19.0.0 can compile before touching BE/C++ thirdparty. --> |
| <arrow.version>19.0.0</arrow.version> |
| <!-- ADBC Java. Its own release line is independent of the C/Go one (this tag pairs with C/Go |
| 1.12.0), and its parent pom pins Arrow Java 19.0.0 — the same version as arrow.version above, |
| so the fe-connector-adbc plugin introduces no second Arrow. --> |
| <adbc.version>0.24.0</adbc.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> |
| <!-- HttpClient 5.5.2 can leak pooled connections on decode errors (CVE-2026-64607), |
| and HttpCore 5.3.6 is affected by HTTP/1 and HTTP/2 memory-exhaustion issues |
| (CVE-2026-54399 and CVE-2026-54428). Use their fixed maintenance releases. --> |
| <httpclient5.version>5.6.3</httpclient5.version> |
| <httpcore5.version>5.4.3</httpcore5.version> |
| <aws-java-sdk.version>1.12.669</aws-java-sdk.version> |
| <mariadb-java-client.version>3.0.9</mariadb-java-client.version> |
| <postgresql.version>42.7.13</postgresql.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 Boot 3.5.16 manages fixed Spring LDAP 3.3.8, Spring Data 3.5.13, |
| Micrometer 1.15.12, and Logback 1.5.34 releases for their 2026 advisories. --> |
| <spring.version>3.5.16</spring.version> |
| <!-- Spring Framework 6.2.19 fixes the June 2026 security advisory set, including |
| CVE-2026-41848; keep the explicit framework BOM aligned with that release. --> |
| <spring-framework.version>6.2.19</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.8.0</ranger-plugins-common.version> |
| <!-- Huawei IAM pulls bcprov-jdk15on 1.69, whose final 1.70 release is vulnerable to |
| CVE-2023-33202. Use the compatible jdk18on line at 1.84, which also fixes |
| CVE-2025-14813, CVE-2026-0636, CVE-2026-3505, CVE-2026-5588, and CVE-2026-5598. --> |
| <bcprov-jdk18on.version>1.84</bcprov-jdk18on.version> |
| <woodstox.version>6.5.1</woodstox.version> |
| <kerby.version>2.0.3</kerby.version> |
| <jettison.version>1.5.4</jettison.version> |
| <!-- Jetty 12.0.34 is affected by CVE-2026-6790, CVE-2026-8384, |
| CVE-2026-10050, and CVE-2026-10051; 12.0.38 contains all published fixes. --> |
| <jetty.version>12.0.38</jetty.version> |
| <jetty-http.version>11.0.26</jetty-http.version> |
| <!-- org.lz4:lz4-java is archived and vulnerable through its final 1.8.x line. |
| Resolve its official 1.8.1 relocation POM, then manage the maintained coordinate at |
| 1.11.1 to fix CVE-2025-12183, CVE-2025-66566, and CVE-2026-59949. --> |
| <lz4-java-relocation.version>1.8.1</lz4-java-relocation.version> |
| <lz4-java.version>1.11.1</lz4-java.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>2.0.3</aircompressor.version> |
| <!-- paimon --> |
| <!-- R-007 INVARIANT: this single property pins org.apache.paimon:* for ALL THREE paimon |
| consumers — the FE connector (fe-connector-paimon, references ${paimon.version} |
| directly) and the two BE-java-extensions modules paimon-scanner + preload-extensions |
| (inherit via dependencyManagement below). The FE serializes a paimon Table/Split with |
| InstantiationUtil and BE deserializes it with the SAME paimon jar; a version mismatch |
| silently breaks that FE->BE deserialization at runtime. These three MUST stay equal — |
| do NOT override paimon.version per-module. --> |
| <paimon.version>1.3.1</paimon.version> |
| <disruptor.version>3.4.4</disruptor.version> |
| <jetbrains-annotations.version>17.0.0</jetbrains-annotations.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> |
| <!-- Maven Shade 3.4.1 cannot parse the Java 21 multi-release classes shipped by |
| Jackson 2.21.x. Version 3.6.2 uses a current ASM release that supports them. --> |
| <maven-shade-plugin.version>3.6.2</maven-shade-plugin.version> |
| <argLine></argLine> |
| <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.7</azure.sdk.version> |
| <azure.sdk.batch.version>12.22.0</azure.sdk.batch.version> |
| <msal4j.version>1.25.0</msal4j.version> |
| <azure.keyvault.core.version>1.2.6</azure.keyvault.core.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> |
| <fastutil.version>8.5.18</fastutil.version> |
| </properties> |
| <profiles> |
| <profile> |
| <!-- Keep benchmarks out of the default FE reactor and all published runtime jars. --> |
| <id>benchmark</id> |
| <modules> |
| <module>fe-sql-parser-benchmark</module> |
| </modules> |
| </profile> |
| <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> |
| <profile> |
| <id>flatten</id> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>flatten-maven-plugin</artifactId> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| <profile> |
| <id>release</id> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>flatten-maven-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>license-maven-plugin</artifactId> |
| <version>2.1.0</version> |
| <executions> |
| <execution> |
| <id>add-third-party</id> |
| <goals> |
| <goal>add-third-party</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| <profile> |
| <id>coverage</id> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.jacoco</groupId> |
| <artifactId>jacoco-maven-plugin</artifactId> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| <dependencyManagement> |
| <dependencies> |
| <!-- MUST stay ahead of the netty-bom import below: netty-bom declares each |
| netty-codec-native-quic classifier with an explicit <scope>runtime</scope>, and |
| dependencyManagement scope is force-applied to transitive nodes. Doris uses no |
| QUIC/HTTP3 anywhere, so that dragged ~31MB of unused native libs into every |
| artifact carrying netty (fe-core lib, every be-java-extensions fat jar, the |
| plugin zips). provided keeps them on the compile classpath but out of every |
| shipped package. dependencyManagement is first-match-wins, so moving these |
| below the import silently restores the bloat. --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-codec-native-quic</artifactId> |
| <version>${netty-all.version}</version> |
| <classifier>linux-x86_64</classifier> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-codec-native-quic</artifactId> |
| <version>${netty-all.version}</version> |
| <classifier>linux-aarch_64</classifier> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-codec-native-quic</artifactId> |
| <version>${netty-all.version}</version> |
| <classifier>osx-x86_64</classifier> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-codec-native-quic</artifactId> |
| <version>${netty-all.version}</version> |
| <classifier>osx-aarch_64</classifier> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-codec-native-quic</artifactId> |
| <version>${netty-all.version}</version> |
| <classifier>windows-x86_64</classifier> |
| <scope>provided</scope> |
| </dependency> |
| <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> |
| <!-- Keep all OpenTelemetry API, SDK, and exporter artifacts on the CVE-2026-45292-fixed line. --> |
| <dependency> |
| <groupId>io.opentelemetry</groupId> |
| <artifactId>opentelemetry-bom</artifactId> |
| <version>${opentelemetry.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> |
| <!-- Override Spring Boot's vulnerable HttpComponents 5 versions. --> |
| <dependency> |
| <groupId>org.apache.httpcomponents.client5</groupId> |
| <artifactId>httpclient5</artifactId> |
| <version>${httpclient5.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.httpcomponents.core5</groupId> |
| <artifactId>httpcore5</artifactId> |
| <version>${httpcore5.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.httpcomponents.core5</groupId> |
| <artifactId>httpcore5-h2</artifactId> |
| <version>${httpcore5.version}</version> |
| </dependency> |
| <!-- First redirect archived org.lz4 dependencies, then select the fixed maintained release. --> |
| <dependency> |
| <groupId>org.lz4</groupId> |
| <artifactId>lz4-java</artifactId> |
| <version>${lz4-java-relocation.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>at.yawk.lz4</groupId> |
| <artifactId>lz4-java</artifactId> |
| <version>${lz4-java.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ivy</groupId> |
| <artifactId>ivy</artifactId> |
| <version>${ivy.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.jetty.websocket</groupId> |
| <artifactId>websocket-client</artifactId> |
| <version>${jetty-websocket.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> |
| <!-- The core Jetty BOM does not manage Jakarta EE 10 artifacts; import the matching |
| EE10 BOM before Spring Boot so the complete Jetty 12 graph stays on 12.0.38. --> |
| <dependency> |
| <groupId>org.eclipse.jetty.ee10</groupId> |
| <artifactId>jetty-ee10-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> |
| <!-- Replacement for Huawei IAM's vulnerable bcprov-jdk15on dependency. --> |
| <dependency> |
| <groupId>org.bouncycastle</groupId> |
| <artifactId>bcprov-jdk18on</artifactId> |
| <version>${bcprov-jdk18on.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> |
| <!-- The fat hive-catalog-shade is no longer consumed by any fe/fe-connector module (the plain-HMS |
| client + iceberg HiveCatalog moved to the slim fe-connector-hms-hive-shade). This version pin |
| is kept because be-java-extensions (avro-scanner, java-udf) still depend on hive-catalog-shade |
| — do NOT delete it. --> |
| <dependency> |
| <groupId>org.apache.doris</groupId> |
| <artifactId>hive-catalog-shade</artifactId> |
| <version>${doris.hive.catalog.shade.version}</version> |
| </dependency> |
| <!-- Hive-UDF compatibility. User JAVA_UDF jars may declare a symbol class extending |
| org.apache.hadoop.hive.ql.exec.UDF; regression-test/java-udf-src/pom.xml compiles |
| against this exact artifact at scope=provided, i.e. the base classes are deliberately |
| NOT bundled in the user jar and the host must supply them. |
| The `core` classifier is the unshaded jar: it carries only org/apache/hadoop and |
| org/apache/hive, no caffeine/fastutil/guava, so it shadows nothing on the classpath. |
| The wildcard exclusion is load-bearing, not tidiness: a classifier shares its |
| artifact's pom, so without it hive-exec's 29 non-optional dependencies follow it |
| onto the consumer's classpath, including a second SLF4J binding. A consumer that |
| genuinely needs those must re-declare them deliberately. --> |
| <dependency> |
| <groupId>org.apache.hive</groupId> |
| <artifactId>hive-exec</artifactId> |
| <classifier>core</classifier> |
| <version>${hive.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>*</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| </exclusions> |
| </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-foundation</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>fe-common</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>fe-trino-connector-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> |
| <!-- commons-lang 2.x: required at RUNTIME by hive-catalog-shade's HiveConf |
| (org.apache.commons.lang.StringUtils). Not referenced by any fe source. --> |
| <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> |
| <!-- Pulled in by hive-exec -> hadoop-yarn-registry and hadoop-common. --> |
| <dependency> |
| <groupId>commons-net</groupId> |
| <artifactId>commons-net</artifactId> |
| <version>${commons-net.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> |
| <dependency> |
| <groupId>dev.cel</groupId> |
| <artifactId>cel</artifactId> |
| <version>${cel.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>io.github.resilience4j</groupId> |
| <artifactId>resilience4j-ratelimiter</artifactId> |
| <version>${resilience4j.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> |
| <exclusions> |
| <exclusion> |
| <groupId>org.apache.ant</groupId> |
| <artifactId>ant</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.checkerframework</groupId> |
| <artifactId>checker</artifactId> |
| </exclusion> |
| <!-- BDB JE only references javax.resource in its optional JCA resource |
| adapter (com.sleepycat.je.jca.ra), which embedded FE never uses. |
| javax.resource:connector:1.0 has no jar in Maven Central (only a pom) |
| and its historical host (repo.grails.org) is unreliable, so pulling it |
| breaks the build in many environments. Exclude it. --> |
| <exclusion> |
| <groupId>javax.resource</groupId> |
| <artifactId>connector</artifactId> |
| </exclusion> |
| </exclusions> |
| </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> |
| <!-- Open JSON: Apache-2.0 clean-room implementation of the org.json API --> |
| <dependency> |
| <groupId>com.tdunning</groupId> |
| <artifactId>json</artifactId> |
| <version>${open-json.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-web</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>${log4j2.version}</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> |
| <dependency> |
| <groupId>org.jetbrains</groupId> |
| <artifactId>annotations</artifactId> |
| <version>${jetbrains-annotations.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>${okhttp.version}</version> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp --> |
| <dependency> |
| <groupId>com.squareup.okhttp3</groupId> |
| <artifactId>okhttp-jvm</artifactId> |
| <version>${okhttp.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/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> |
| <!-- S3Tables catalog impl for the iceberg s3tables flavor; not part of the AWS SDK BOM. --> |
| <dependency> |
| <groupId>software.amazon.s3tables</groupId> |
| <artifactId>s3-tables-catalog-for-iceberg</artifactId> |
| <version>${s3tables.catalog.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.paimon</groupId> |
| <artifactId>paimon-core</artifactId> |
| <version>${paimon.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.paimon</groupId> |
| <artifactId>paimon-common</artifactId> |
| <version>${paimon.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.paimon</groupId> |
| <artifactId>paimon-hive-connector-3.1</artifactId> |
| <version>${paimon.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.paimon</groupId> |
| <artifactId>paimon-format</artifactId> |
| <version>${paimon.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.paimon</groupId> |
| <artifactId>paimon-s3</artifactId> |
| <version>${paimon.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.paimon</groupId> |
| <artifactId>paimon-jindo</artifactId> |
| <version>${paimon.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> |
| <exclusion> |
| <groupId>com.squareup.okhttp3</groupId> |
| <artifactId>okhttp</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>com.squareup.okio</groupId> |
| <artifactId>okio</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>com.aliyun.odps</groupId> |
| <artifactId>odps-sdk-table-api</artifactId> |
| <version>${maxcompute.version}</version> |
| </dependency> |
| <dependency> |
| <!-- Keep tea pinned for Alibaba SDK dependency chains that allow com.aliyun:tea:[1.1.14,2.0.0). --> |
| <groupId>com.aliyun</groupId> |
| <artifactId>tea</artifactId> |
| <version>1.4.1</version> |
| </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.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-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-compression</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> |
| <!-- Arrow C Data Interface: how the ADBC JNI bridge hands Arrow arrays across the native |
| boundary. Pulled in by adbc-driver-jni; declared here because nothing else in FE used it. --> |
| <dependency> |
| <groupId>org.apache.arrow</groupId> |
| <artifactId>arrow-c-data</artifactId> |
| <version>${arrow.version}</version> |
| </dependency> |
| <!-- ADBC. adbc-driver-jni is the JNI wrapper around the same C driver manager BE links |
| statically, so FE and BE dlopen the very same driver .so; adbc-driver-manager comes with it |
| (JniDriverFactory implements its factory SPI). --> |
| <dependency> |
| <groupId>org.apache.arrow.adbc</groupId> |
| <artifactId>adbc-core</artifactId> |
| <version>${adbc.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.arrow.adbc</groupId> |
| <artifactId>adbc-driver-manager</artifactId> |
| <version>${adbc.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.arrow.adbc</groupId> |
| <artifactId>adbc-driver-jni</artifactId> |
| <version>${adbc.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> |
| <exclusion> |
| <groupId>com.squareup.okhttp3</groupId> |
| <artifactId>okhttp</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>com.squareup.okio</groupId> |
| <artifactId>okio</artifactId> |
| </exclusion> |
| <!-- trino-main is the ONLY source of the Jetty Servlet 5.0 API repackage in this |
| repository (verified against every module tree: fe-common, |
| fe-trino-connector-common and fe-connector-trino all reach it through here). |
| Its jakarta.servlet.http.Cookie predates Servlet 6.1 and has no |
| getAttributes(), so whenever it wins classpath order over |
| jakarta:jakarta.servlet-api it shadows the method Jetty 12.0.34 calls while |
| writing a Set-Cookie header -> NoSuchMethodError, which |
| RestApiExceptionHandler turns into an error payload, so every cookie-carrying |
| REST endpoint silently answers with no data (RemoteDorisRestClientTest |
| #testGetDatabaseNameList / #testGetTablesNameList assert on that data). |
| Excluding it HERE, on the managed entry, is what makes that structural: the |
| previous per-dependency exclusion on fe-core's fe-common dep only closed the |
| fe-common path, and the moment fe-core took a test-scope dep on |
| fe-connector-trino the same jar walked back in by a second path. fe-core is |
| the only module in fe/ that imports jakarta.servlet at all, and it declares |
| jakarta.servlet-api 6.1.0 explicitly, so nothing loses an API it uses. No |
| production artifact changes either: this jar is already pinned to |
| <scope>test</scope> repo-wide above. --> |
| <exclusion> |
| <groupId>org.eclipse.jetty.toolchain</groupId> |
| <artifactId>jetty-jakarta-servlet-api</artifactId> |
| </exclusion> |
| </exclusions> |
| </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>com.azure</groupId> |
| <artifactId>azure-sdk-bom</artifactId> |
| <version>${azure.sdk.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <!-- Pulled in by azure-identity and msal4j-persistence-extension. --> |
| <dependency> |
| <groupId>com.microsoft.azure</groupId> |
| <artifactId>msal4j</artifactId> |
| <version>${msal4j.version}</version> |
| </dependency> |
| <!-- Pulled in by hadoop-azure -> azure-storage. --> |
| <dependency> |
| <groupId>com.microsoft.azure</groupId> |
| <artifactId>azure-keyvault-core</artifactId> |
| <version>${azure.keyvault.core.version}</version> |
| </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> |
| <dependency> |
| <groupId>it.unimi.dsi</groupId> |
| <artifactId>fastutil-core</artifactId> |
| <version>${fastutil.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> |
| <!-- should be used in test scope --> |
| <dependency> |
| <groupId>org.awaitility</groupId> |
| <artifactId>awaitility</artifactId> |
| <scope>test</scope> |
| </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> |