582 lines
19 KiB
XML
582 lines
19 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>io.hetu.core</groupId>
|
|
<artifactId>presto-root</artifactId>
|
|
<version>1.8.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>presto-hive</artifactId>
|
|
<name>presto-hive</name>
|
|
<description>Presto - Hive Connector</description>
|
|
|
|
<properties>
|
|
<air.main.basedir>${project.parent.basedir}</air.main.basedir>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-plugin-toolkit</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>hetu-common</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-orc</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-parquet</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.parquet</groupId>
|
|
<artifactId>parquet-encoding</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.hudi</groupId>
|
|
<artifactId>hudi-hadoop-mr</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-memory-context</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-rcfile</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.prestosql.hadoop</groupId>
|
|
<artifactId>hadoop-apache</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.prestosql.hive</groupId>
|
|
<artifactId>hive-apache</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.thrift</groupId>
|
|
<artifactId>libthrift</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>aircompressor</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>stats</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>bootstrap</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>concurrent</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>log</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>event</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>json</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>configuration</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>parameternames</artifactId>
|
|
<version>1.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.inject</groupId>
|
|
<artifactId>guice</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>it.unimi.dsi</groupId>
|
|
<artifactId>fastutil</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.validation</groupId>
|
|
<artifactId>validation-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.weakref</groupId>
|
|
<artifactId>jmxutils</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>joda-time</groupId>
|
|
<artifactId>joda-time</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>joda-to-java-time-bridge</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.amazonaws</groupId>
|
|
<artifactId>aws-java-sdk-core</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.amazonaws</groupId>
|
|
<artifactId>aws-java-sdk-glue</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.amazonaws</groupId>
|
|
<artifactId>aws-java-sdk-s3</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.cloud.bigdataoss</groupId>
|
|
<artifactId>util</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.cloud.bigdataoss</groupId>
|
|
<artifactId>gcsio</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.cloud.bigdataoss</groupId>
|
|
<artifactId>util-hadoop</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.hive</groupId>
|
|
<artifactId>hive-contrib</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<groupId>org.slf4j</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>arrow-memory</artifactId>
|
|
<groupId>org.apache.arrow</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>avatica</artifactId>
|
|
<groupId>org.apache.calcite.avatica</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>httpclient</artifactId>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>commons-logging</artifactId>
|
|
<groupId>commons-logging</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>metrics-core</artifactId>
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>arrow-format</artifactId>
|
|
<groupId>org.apache.arrow</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>arrow-vector</artifactId>
|
|
<groupId>org.apache.arrow</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>calcite-core</artifactId>
|
|
<groupId>org.apache.calcite</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>joda-time</artifactId>
|
|
<groupId>joda-time</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>hive-exec</artifactId>
|
|
<groupId>org.apache.hive</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>parquet-hadoop-bundle</artifactId>
|
|
<groupId>org.apache.parquet</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>hadoop-common</artifactId>
|
|
<groupId>org.apache.hadoop</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>hadoop-hdfs</artifactId>
|
|
<groupId>org.apache.hadoop</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
<groupId>org.slf4j</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>avro</artifactId>
|
|
<groupId>org.apache.avro</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>hive-shims-common</artifactId>
|
|
<groupId>org.apache.hive.shims</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>hive-common</artifactId>
|
|
<groupId>org.apache.hive</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>hive-storage-api</artifactId>
|
|
<groupId>org.apache.hive</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>hive-classification</artifactId>
|
|
<groupId>org.apache.hive</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>hive-serde</artifactId>
|
|
<groupId>org.apache.hive</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>orc-core</artifactId>
|
|
<groupId>org.apache.orc</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>orc-shims</artifactId>
|
|
<groupId>org.apache.orc</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>leveldbjni-all</artifactId>
|
|
<groupId>org.fusesource.leveldbjni</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>hadoop-yarn-common</artifactId>
|
|
<groupId>org.apache.hadoop</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>hive-shims-scheduler</artifactId>
|
|
<groupId>org.apache.hive.shims</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>hive-shims-0.23</artifactId>
|
|
<groupId>org.apache.hive.shims</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.cloud.bigdataoss</groupId>
|
|
<artifactId>gcs-connector</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.amazonaws</groupId>
|
|
<artifactId>aws-java-sdk-sts</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.xerial.snappy</groupId>
|
|
<artifactId>snappy-java</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.inject</groupId>
|
|
<artifactId>javax.inject</artifactId>
|
|
</dependency>
|
|
|
|
<!-- used by tests but also needed transitively -->
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>log-manager</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<!-- Presto SPI -->
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-spi</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>hetu-cube</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>slice</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>units</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.openjdk.jol</groupId>
|
|
<artifactId>jol-core</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- for testing -->
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-spi</artifactId>
|
|
<type>test-jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>testing-mysql-server</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>hetu-metastore</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-main</artifactId>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.sun</groupId>
|
|
<artifactId>tools</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-main</artifactId>
|
|
<type>test-jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-client</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-parser</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-tests</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-tpch</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift.tpch</groupId>
|
|
<artifactId>tpch</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jetbrains</groupId>
|
|
<artifactId>annotations</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.testng</groupId>
|
|
<artifactId>testng</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.airlift</groupId>
|
|
<artifactId>testing</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.anarres.lzo</groupId>
|
|
<artifactId>lzo-hadoop</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- for benchmark -->
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>presto-benchmark</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.openjdk.jmh</groupId>
|
|
<artifactId>jmh-core</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.openjdk.jmh</groupId>
|
|
<artifactId>jmh-generator-annprocess</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>hetu-transport</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.hetu.core</groupId>
|
|
<artifactId>hetu-startree</artifactId>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.objenesis</groupId>
|
|
<artifactId>objenesis</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.checkerframework</groupId>
|
|
<artifactId>checker-qual</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.google.errorprone</groupId>
|
|
<artifactId>error_prone_annotations</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-util</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-text</artifactId>
|
|
<version>1.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>default</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<!-- Exclude tests against Glue from build -->
|
|
<exclude>**/TestHiveGlueMetastore.java</exclude>
|
|
<!-- TestFullParquetReader takes a long time and might produce no output leading to Travis aborting the build -->
|
|
<!-- TODO https://github.com/prestosql/presto/issues/612 run TestFullParquetReader on CI -->
|
|
<exclude>**/TestFullParquetReader.java</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>test-hive-glue</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<includes>
|
|
<include>**/TestHiveGlueMetastore.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|