flink-table-store-format
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-store-format</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-parent</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-format</artifactId> <name>Flink Table Store : Format</name> <build> <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-sql-avro</include> <include>org.apache.flink:${flink.sql.orc}</include> <include>org.apache.flink:${flink.sql.parquet}</include> </includes> </artifactSet> <filters> <filter> <artifact>org.apache.flink:flink-sql-avro</artifact> <excludes> <exclude>META-INF/services/**</exclude> </excludes> </filter> <filter> <artifact>org.apache.flink:${flink.sql.orc}</artifact> <excludes> <exclude>META-INF/services/**</exclude> </excludes> </filter> <filter> <artifact>org.apache.flink:${flink.sql.parquet}</artifact> <excludes> <exclude>META-INF/services/**</exclude> </excludes> </filter> <filter> <artifact>*</artifact> <excludes> <exclude>META-INF/LICENSE.txt</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>org.apache.avro</pattern> <shadedPattern>org.apache.flink.avro.shaded.org.apache.avro</shadedPattern> </relocation> <relocation> <pattern>org.apache.flink.formats.avro</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.flink.formats.avro</shadedPattern> </relocation> <relocation> <pattern>org.apache.parquet</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.parquet</shadedPattern> </relocation> <relocation> <pattern>org.apache.flink.formats.parquet</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.flink.formats.parquet</shadedPattern> </relocation> <relocation> <pattern>org.apache.flink.orc</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.flink.orc</shadedPattern> </relocation> <relocation> <pattern>org.apache.orc</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.orc</shadedPattern> </relocation> <relocation> <pattern>org.apache.hive</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.hive</shadedPattern> </relocation> <relocation> <pattern>org.apache.hadoop.hive</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.hadoop.hive</shadedPattern> </relocation> <relocation> <pattern>io.airlift</pattern> <shadedPattern>org.apache.flink.table.store.shaded.io.airlift</shadedPattern> </relocation> <relocation> <pattern>org.apache.commons</pattern> <shadedPattern>org.apache.flink.table.store.shaded.org.apache.commons</shadedPattern> </relocation> <relocation> <pattern>com.google.protobuf</pattern> <shadedPattern>org.apache.flink.table.store.shaded.com.google.protobuf</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-store-common</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-runtime</artifactId> <version>1.16.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-connector-files</artifactId> <version>1.16.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-avro</artifactId> <version>1.16.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-orc</artifactId> <version>1.16.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <version>2.8.5</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>avro</artifactId> <groupId>org.apache.avro</groupId> </exclusion> <exclusion> <artifactId>log4j</artifactId> <groupId>log4j</groupId> </exclusion> <exclusion> <artifactId>slf4j-log4j12</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-store-common</artifactId> <version>0.3.0</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> <version>2.8.5</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>log4j</artifactId> <groupId>log4j</groupId> </exclusion> <exclusion> <artifactId>hadoop-hdfs-client</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>commons-daemon</artifactId> <groupId>commons-daemon</groupId> </exclusion> <exclusion> <artifactId>netty-all</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>xercesImpl</artifactId> <groupId>xerces</groupId> </exclusion> <exclusion> <artifactId>leveldbjni-all</artifactId> <groupId>org.fusesource.leveldbjni</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-csv</artifactId> <version>1.16.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-parquet</artifactId> <version>1.16.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-core</artifactId> <version>2.8.5</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>curator-test</artifactId> <groupId>org.apache.curator</groupId> </exclusion> <exclusion> <artifactId>hadoop-yarn-common</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>avro</artifactId> <groupId>org.apache.avro</groupId> </exclusion> <exclusion> <artifactId>jackson-core-asl</artifactId> <groupId>org.codehaus.jackson</groupId> </exclusion> <exclusion> <artifactId>slf4j-log4j12</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>guice-servlet</artifactId> <groupId>com.google.inject.extensions</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>