trino-hive-hadoop2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.trino</groupId> <artifactId>trino-hive-hadoop2</artifactId> <version>434</version> </dependency>
<?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.trino</groupId> <artifactId>trino-root</artifactId> <version>434</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>trino-hive-hadoop2</artifactId> <packaging>trino-plugin</packaging> <description>Trino - Hive Connector - Apache Hadoop 2.x</description> <properties> <air.main.basedir>${project.parent.basedir}</air.main.basedir> </properties> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-hive</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>slice</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.opentelemetry</groupId> <artifactId>opentelemetry-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.opentelemetry</groupId> <artifactId>opentelemetry-context</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-spi</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.openjdk.jol</groupId> <artifactId>jol-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-core</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-s3</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.qubole.rubix</groupId> <artifactId>rubix-presto-shaded</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>concurrent</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>json</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>stats</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>units</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-filesystem</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-plugin-toolkit</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-shaded-client</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>junit-extensions</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-hdfs</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-hive</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-main</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-spi</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-testing-containers</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.trino</groupId> <artifactId>trino-testing-services</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.trino.hadoop</groupId> <artifactId>hadoop-apache</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.trino.hive</groupId> <artifactId>hive-apache</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </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>**/TestHive.java</exclude> <exclude>**/TestHiveThriftMetastoreWithS3.java</exclude> <exclude>**/TestHiveFileSystemS3.java</exclude> <exclude>**/TestHiveFileSystemWasb.java</exclude> <exclude>**/TestHiveFileSystemAbfsAccessKey.java</exclude> <exclude>**/TestHiveFileSystemAbfsOAuth.java</exclude> <exclude>**/TestHiveFileSystemAdl.java</exclude> <exclude>**/TestHiveAzure.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>test-hive-hadoop2</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/TestHive.java</include> </includes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>test-hive-hadoop2-s3</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/TestHiveThriftMetastoreWithS3.java</include> <include>**/TestHiveFileSystemS3.java</include> </includes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>test-hive-hadoop2-wasb</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/TestHiveFileSystemWasb.java</include> </includes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>test-hive-hadoop2-abfs-access-key</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/TestHiveFileSystemAbfsAccessKey.java</include> </includes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>test-hive-hadoop2-abfs-oauth</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/TestHiveFileSystemAbfsOAuth.java</include> </includes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>test-hive-hadoop2-adl</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/TestHiveFileSystemAdl.java</include> </includes> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>