sort-connector-elasticsearch6
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.inlong</groupId> <artifactId>sort-connector-elasticsearch6</artifactId> <version>2.2.0</version> </dependency>
<?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="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>org.apache.inlong</groupId> <artifactId>sort-connectors-v1.13</artifactId> <version>2.2.0</version> </parent> <artifactId>sort-connector-elasticsearch6</artifactId> <name>Apache InLong - Sort-connector-elasticsearch6</name> <properties> <inlong.root.dir>${project.parent.parent.parent.parent.parent.basedir}</inlong.root.dir> </properties> <dependencies> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-connector-elasticsearch6_2.12</artifactId> <version>${flink.version}</version> </dependency> <dependency> <groupId>org.apache.inlong</groupId> <artifactId>sort-connector-elasticsearch-base</artifactId> <version>${project.version}</version> <exclusions> <!-- Elasticsearch Java Client has been moved to a different module in 5.x --> <exclusion> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.inlong</groupId> <artifactId>sort-connector-base</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>elasticsearch-rest-high-level-client</artifactId> <version>${elasticsearch6.version}</version> </dependency> <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>elasticsearch-rest-client</artifactId> <version>${elasticsearch6.version}</version> </dependency> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> <version>${elasticsearch6.version}</version> </dependency> <!-- test dependencies --> <dependency> <groupId>org.testcontainers</groupId> <artifactId>elasticsearch</artifactId> <version>1.15.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-test-utils_2.12</artifactId> <version>${flink.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-streaming-java_2.12</artifactId> <version>${flink.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.inlong</groupId> <artifactId>sort-connector-elasticsearch-base</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> <exclusions> <exclusion> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> </exclusion> </exclusions> </dependency> <!-- Including elasticsearch transport dependency for tests. Netty3 is not here anymore in 6.x --> <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>transport</artifactId> <version>${elasticsearch6.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.elasticsearch.plugin</groupId> <artifactId>transport-netty4-client</artifactId> <version>${elasticsearch6.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <scope>provided</scope> </dependency> <!-- Elasticsearch table descriptor testing --> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-planner_2.12</artifactId> <version>${flink.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <!-- Table API integration tests --> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-planner-blink_2.12</artifactId> <version>${flink.version}</version> <scope>test</scope> </dependency> <!-- Elasticsearch table sink factory testing --> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-json</artifactId> <version>${flink.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>${plugin.shade.version}</version> <executions> <execution> <id>shade-flink</id> <goals> <goal>shade</goal> </goals> <phase>package</phase> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> <shadeTestJar>false</shadeTestJar> <artifactSet> <includes> <include>*:*</include> </includes> <excludes> <!-- These dependencies are not required. --> <exclude>com.tdunning:t-digest</exclude> <exclude>net.sf.jopt-simple:jopt-simple</exclude> <exclude>org.elasticsearch:jna</exclude> <exclude>org.hdrhistogram:HdrHistogram</exclude> <exclude>org.yaml:snakeyaml</exclude> </excludes> </artifactSet> <filters> <filter> <artifact>org.apache.inlong:sort-connector-*</artifact> <includes> <include>org/apache/inlong/**</include> <include>META-INF/services/org.apache.flink.table.factories.Factory</include> </includes> </filter> <!-- Unless otherwise noticed these filters only serve to reduce the size of the resulting jar by removing unnecessary files --> <filter> <artifact>org.elasticsearch:elasticsearch</artifact> <excludes> <exclude>config/**</exclude> <exclude>modules.txt</exclude> <exclude>plugins.txt</exclude> <exclude>org/joda/**</exclude> </excludes> </filter> <filter> <artifact>org.elasticsearch.client:elasticsearch-rest-high-level-client</artifact> <excludes> <exclude>forbidden/**</exclude> </excludes> </filter> <filter> <artifact>org.apache.httpcomponents:httpclient</artifact> <excludes> <exclude>mozilla/**</exclude> </excludes> </filter> <filter> <artifact>org.apache.lucene:lucene-analyzers-common</artifact> <excludes> <exclude>org/tartarus/**</exclude> </excludes> </filter> <filter> <artifact>*:*</artifact> <excludes> <!-- exclude Java 9 specific classes as otherwise the shade-plugin crashes --> <exclude>META-INF/versions/**</exclude> <exclude>META-INF/services/com.fasterxml.**</exclude> <exclude>META-INF/services/org.apache.lucene.**</exclude> <exclude>META-INF/services/org.elasticsearch.**</exclude> <exclude>META-INF/LICENSE.txt</exclude> </excludes> </filter> </filters> <relocations> <!-- Force relocation of all Elasticsearch dependencies. --> <relocation> <pattern>org.apache.commons</pattern> <shadedPattern>org.apache.flink.elasticsearch6.shaded.org.apache.commons</shadedPattern> </relocation> <relocation> <pattern>org.apache.http</pattern> <shadedPattern>org.apache.flink.elasticsearch6.shaded.org.apache.http</shadedPattern> </relocation> <relocation> <pattern>org.apache.lucene</pattern> <shadedPattern>org.apache.flink.elasticsearch6.shaded.org.apache.lucene</shadedPattern> </relocation> <relocation> <pattern>org.elasticsearch</pattern> <shadedPattern>org.apache.flink.elasticsearch6.shaded.org.elasticsearch</shadedPattern> </relocation> <relocation> <pattern>com.fasterxml.jackson</pattern> <shadedPattern>org.apache.flink.elasticsearch6.shaded.com.fasterxml.jackson</shadedPattern> </relocation> <relocation> <pattern>org.apache.inlong.sort.elasticsearch</pattern> <shadedPattern>org.apache.inlong.sort.elasticsearch6</shadedPattern> <includes> <include>org.apache.inlong.sort.elasticsearch.**</include> </includes> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>