| <?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/maven-v4_0_0.xsd"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.flink</groupId> |
| <artifactId>flink-connector-opensearch-parent</artifactId> |
| <version>2.0-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>flink-sql-connector-opensearch</artifactId> |
| <name>Flink : Connectors : SQL : Opensearch</name> |
| |
| <packaging>jar</packaging> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.flink</groupId> |
| <artifactId>flink-connector-opensearch</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-shade-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>shade-flink</id> |
| <phase>package</phase> |
| <goals> |
| <goal>shade</goal> |
| </goals> |
| <configuration> |
| <artifactSet> |
| <includes> |
| <include>*:*</include> |
| </includes> |
| <excludes> |
| <!-- These dependencies are not required. --> |
| <exclude>com.tdunning:t-digest</exclude> |
| <exclude>joda-time:joda-time</exclude> |
| <exclude>net.sf.jopt-simple:jopt-simple</exclude> |
| <exclude>net.java.dev.jna:jna</exclude> |
| <exclude>org.hdrhistogram:HdrHistogram</exclude> |
| <exclude>org.yaml:snakeyaml</exclude> |
| </excludes> |
| </artifactSet> |
| <filters> |
| <!-- Unless otherwise noticed these filters only serve to reduce the size of the resulting |
| jar by removing unnecessary files --> |
| <filter> |
| <artifact>org.opensearch:opensearch</artifact> |
| <excludes> |
| <exclude>config/**</exclude> |
| <exclude>modules.txt</exclude> |
| <exclude>plugins.txt</exclude> |
| <exclude>org/joda/**</exclude> |
| <!-- Exclude bootstrap due to license issues --> |
| <exclude>org/opensearch/bootstrap/**</exclude> |
| </excludes> |
| </filter> |
| <filter> |
| <artifact>org.opensearch.client:opensearch-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.opensearch.**</exclude> |
| <exclude>META-INF/LICENSE.txt</exclude> |
| </excludes> |
| </filter> |
| </filters> |
| <relocations> |
| <relocation> |
| <pattern>org.apache.commons</pattern> |
| <shadedPattern>org.apache.flink.opensearch.shaded.org.apache.commons</shadedPattern> |
| </relocation> |
| <relocation> |
| <pattern>org.apache.http</pattern> |
| <shadedPattern>org.apache.flink.opensearch.shaded.org.apache.http</shadedPattern> |
| </relocation> |
| <relocation> |
| <pattern>org.apache.lucene</pattern> |
| <shadedPattern>org.apache.flink.opensearch.shaded.org.apache.lucene</shadedPattern> |
| </relocation> |
| <relocation> |
| <pattern>org.opensearch</pattern> |
| <shadedPattern>org.apache.flink.opensearch.shaded.org.opensearch</shadedPattern> |
| </relocation> |
| <relocation> |
| <pattern>com.fasterxml.jackson</pattern> |
| <shadedPattern>org.apache.flink.opensearch.shaded.com.fasterxml.jackson</shadedPattern> |
| </relocation> |
| <relocation> |
| <pattern>com.carrotsearch.hppc</pattern> |
| <shadedPattern>org.apache.flink.opensearch.shaded.com.carrotsearch.hppc</shadedPattern> |
| </relocation> |
| <relocation> |
| <pattern>com.github.mustachejava</pattern> |
| <shadedPattern>org.apache.flink.opensearch.shaded.com.github.mustachejava</shadedPattern> |
| </relocation> |
| <relocation> |
| <pattern>net.jpountz</pattern> |
| <shadedPattern>org.apache.flink.opensearch.shaded.net.jpountz</shadedPattern> |
| </relocation> |
| </relocations> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |