flink-table-store-hive-catalog
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-store-hive-catalog</artifactId> <version>0.3.0</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/maven-v4_0_0.xsd"> <parent> <artifactId>flink-table-store-hive</artifactId> <groupId>org.apache.flink</groupId> <version>0.3.0</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>flink-table-store-hive-catalog</artifactId> <name>Flink Table Store : Hive Catalog</name> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <filtering>true</filtering> <directory>src/main/resources-filtered</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <id>shade-flink</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.apache.flink:flink-table-store-hive-common</include> <include>org.apache.thrift:libthrift</include> <include>org.apache.thrift:libfb303</include> <include>com.google.guava:guava</include> <include>org.apache.hive:hive-common</include> <include>org.apache.hive.shims:hive-shims-common</include> <include>org.apache.hive.shims:hive-shims-0.23</include> <include>org.apache.hive:hive-serde</include> <include>org.apache.hive:hive-metastore</include> </includes> </artifactSet> <relocations> <relocation> <pattern>com.facebook.fb303</pattern> <shadedPattern>org.apache.flink.table.store.shaded.com.facebook.fb303</shadedPattern> </relocation> <relocation> <pattern>com.google.common</pattern> <shadedPattern>org.apache.flink.table.store.shaded.com.google.common</shadedPattern> </relocation> <relocation> <pattern>org.apache.hadoop.hive</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.hadoop.hive</shadedPattern> </relocation> <relocation> <pattern>org.apache.hadoop.fs.ProxyLocalFileSystem</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.hadoop.fs.ProxyLocalFileSystem</shadedPattern> </relocation> <relocation> <pattern>org.apache.hadoop.fs.ProxyFileSystem</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.hadoop.fs.ProxyFileSystem</shadedPattern> </relocation> <relocation> <pattern>org.apache.hadoop.fs.DefaultFileAccess</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.hadoop.fs.DefaultFileAccess</shadedPattern> </relocation> <relocation> <pattern>org.apache.hadoop.mapred.WebHCatJTShim23</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.hadoop.mapred.WebHCatJTShim23</shadedPattern> </relocation> <relocation> <pattern>org.apache.hadoop.security.token.delegation.HiveDelegationTokenSupport</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.hadoop.security.token.delegation.HiveDelegationTokenSupport</shadedPattern> </relocation> <relocation> <pattern>org.apache.hive</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.hive</shadedPattern> </relocation> <relocation> <pattern>org.apache.thrift</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.thrift</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>hive-3.1</id> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <id>shade-flink</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <dependencyReducedPomLocation>${project.basedir}/target/dependency-reduced-pom.xml</dependencyReducedPomLocation> <artifactSet> <includes> <include>org.apache.hive:hive-standalone-metastore</include> </includes> </artifactSet> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.hive</groupId> <artifactId>hive-standalone-metastore</artifactId> <version>${hive.version}</version> <exclusions> <exclusion> <artifactId>log4j</artifactId> <groupId>log4j</groupId> </exclusion> <exclusion> <artifactId>slf4j-log4j12</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency> </dependencies> </profile> </profiles> <dependencies> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-store-core</artifactId> <version>0.3.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-common</artifactId> <version>1.16.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-store-connector</artifactId> <version>0.3.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>frocksdbjni</artifactId> <groupId>com.ververica</groupId> </exclusion> <exclusion> <artifactId>kafka-clients</artifactId> <groupId>org.apache.kafka</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-store-hive-connector</artifactId> <version>0.3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-planner_2.12</artifactId> <version>1.16.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>commons-compiler</artifactId> <groupId>org.codehaus.janino</groupId> </exclusion> <exclusion> <artifactId>janino</artifactId> <groupId>org.codehaus.janino</groupId> </exclusion> <exclusion> <artifactId>flink-table-api-java-bridge</artifactId> <groupId>org.apache.flink</groupId> </exclusion> <exclusion> <artifactId>flink-scala_2.12</artifactId> <groupId>org.apache.flink</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-runtime</artifactId> <version>1.16.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>flink-table-api-java</artifactId> <groupId>org.apache.flink</groupId> </exclusion> <exclusion> <artifactId>flink-cep</artifactId> <groupId>org.apache.flink</groupId> </exclusion> <exclusion> <artifactId>flink-table-api-java-bridge</artifactId> <groupId>org.apache.flink</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-connector-hive_2.12</artifactId> <version>1.16.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>flink-connector-files</artifactId> <groupId>org.apache.flink</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-connector-hive_2.12</artifactId> <version>1.16.0</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-connector-test-utils</artifactId> <version>1.16.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>junit-vintage-engine</artifactId> <groupId>org.junit.vintage</groupId> </exclusion> <exclusion> <artifactId>log4j</artifactId> <groupId>log4j</groupId> </exclusion> <exclusion> <artifactId>flink-runtime</artifactId> <groupId>org.apache.flink</groupId> </exclusion> <exclusion> <artifactId>flink-streaming-java</artifactId> <groupId>org.apache.flink</groupId> </exclusion> <exclusion> <artifactId>flink-test-utils</artifactId> <groupId>org.apache.flink</groupId> </exclusion> <exclusion> <artifactId>testcontainers</artifactId> <groupId>org.testcontainers</groupId> </exclusion> <exclusion> <artifactId>flink-test-utils-junit</artifactId> <groupId>org.apache.flink</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-avro</artifactId> <version>1.16.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jackson-databind</artifactId> <groupId>com.fasterxml.jackson.core</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.klarna</groupId> <artifactId>hiverunner</artifactId> <version>4.0.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hive-serde</artifactId> <groupId>org.apache.hive</groupId> </exclusion> <exclusion> <artifactId>hive-jdbc</artifactId> <groupId>org.apache.hive</groupId> </exclusion> <exclusion> <artifactId>hive-service</artifactId> <groupId>org.apache.hive</groupId> </exclusion> <exclusion> <artifactId>hive-contrib</artifactId> <groupId>org.apache.hive</groupId> </exclusion> <exclusion> <artifactId>hive-exec</artifactId> <groupId>org.apache.hive</groupId> </exclusion> <exclusion> <artifactId>hive-hcatalog-core</artifactId> <groupId>org.apache.hive</groupId> </exclusion> <exclusion> <artifactId>hive-webhcat-java-client</artifactId> <groupId>org.apache.hive.hcatalog</groupId> </exclusion> <exclusion> <artifactId>tez-common</artifactId> <groupId>org.apache.tez</groupId> </exclusion> <exclusion> <artifactId>jdk.tools</artifactId> <groupId>jdk.tools</groupId> </exclusion> <exclusion> <artifactId>hadoop-common</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-auth</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-annotations</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-hdfs</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-mapreduce-client-core</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-yarn-api</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-yarn-client</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-yarn-common</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-yarn-server-common</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-yarn-server-web-proxy</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-shim</artifactId> <groupId>org.apache.tez</groupId> </exclusion> <exclusion> <artifactId>jms</artifactId> <groupId>javax.jms</groupId> </exclusion> <exclusion> <artifactId>slf4j-log4j12</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>tez-dag</artifactId> <groupId>org.apache.tez</groupId> </exclusion> <exclusion> <artifactId>tez-mapreduce</artifactId> <groupId>org.apache.tez</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.8</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>javassist</artifactId> <groupId>javassist</groupId> </exclusion> <exclusion> <artifactId>dom4j</artifactId> <groupId>dom4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.hive</groupId> <artifactId>hive-service</artifactId> <version>2.3.9</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hive-exec</artifactId> <groupId>org.apache.hive</groupId> </exclusion> <exclusion> <artifactId>hive-metastore</artifactId> <groupId>org.apache.hive</groupId> </exclusion> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>jdk.tools</artifactId> <groupId>jdk.tools</groupId> </exclusion> <exclusion> <artifactId>hadoop-common</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-auth</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-client</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-annotations</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-hdfs</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-mapreduce-client-core</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-yarn-api</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-yarn-common</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-yarn-registry</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-yarn-server-applicationhistoryservice</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-yarn-server-common</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-yarn-server-resourcemanager</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hbase-hadoop-compat</artifactId> <groupId>org.apache.hbase</groupId> </exclusion> <exclusion> <artifactId>log4j</artifactId> <groupId>log4j</groupId> </exclusion> <exclusion> <artifactId>slf4j-log4j12</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>jamon-runtime</artifactId> <groupId>org.jamon</groupId> </exclusion> <exclusion> <artifactId>hive-llap-server</artifactId> <groupId>org.apache.hive</groupId> </exclusion> <exclusion> <artifactId>jpam</artifactId> <groupId>net.sf.jpam</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.hive.hcatalog</groupId> <artifactId>hive-hcatalog-core</artifactId> <version>2.3.9</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hive-exec</artifactId> <groupId>org.apache.hive</groupId> </exclusion> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>hadoop-common</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-archives</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-annotations</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-hdfs</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-mapreduce-client-core</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>hadoop-yarn-server-resourcemanager</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>log4j</artifactId> <groupId>log4j</groupId> </exclusion> <exclusion> <artifactId>apache-log4j-extras</artifactId> <groupId>log4j</groupId> </exclusion> <exclusion> <artifactId>slf4j-log4j12</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>jackson-databind</artifactId> <groupId>com.fasterxml.jackson.core</groupId> </exclusion> <exclusion> <artifactId>jamon-runtime</artifactId> <groupId>org.jamon</groupId> </exclusion> <exclusion> <artifactId>hive-cli</artifactId> <groupId>org.apache.hive</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.hive.hcatalog</groupId> <artifactId>hive-webhcat-java-client</artifactId> <version>2.3.9</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jdk.tools</artifactId> <groupId>jdk.tools</groupId> </exclusion> <exclusion> <artifactId>jms</artifactId> <groupId>javax.jms</groupId> </exclusion> <exclusion> <artifactId>log4j</artifactId> <groupId>log4j</groupId> </exclusion> <exclusion> <artifactId>slf4j-log4j12</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>pentaho-aggdesigner-algorithm</artifactId> <groupId>org.pentaho</groupId> </exclusion> <exclusion> <artifactId>jamon-runtime</artifactId> <groupId>org.jamon</groupId> </exclusion> <exclusion> <artifactId>hive-hcatalog-server-extensions</artifactId> <groupId>org.apache.hive.hcatalog</groupId> </exclusion> <exclusion> <artifactId>hive-exec</artifactId> <groupId>org.apache.hive</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>5.8.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>junit-platform-engine</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.32</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>1.3.9</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.8.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-engine</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.23.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>2.17.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.17.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.17.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-1.2-api</artifactId> <version>2.17.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>4.2.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>