Skip to content

Commit

Permalink
[FLINK-10997][formats] Bundle kafka-scheme-registry-client
Browse files Browse the repository at this point in the history
  • Loading branch information
zentol committed Dec 6, 2018
1 parent 3e9f494 commit 339ec17
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions flink-formats/flink-avro-confluent-registry/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,31 @@ under the License.
<goal>shade</goal>
</goals>
<configuration>
<shadeTestJar>false</shadeTestJar>
<artifactSet>
<includes>
<include>io.confluent:*</include>
<include>com.fasterxml.jackson.core:*</include>
<include>org.apache.zookeeper:zookeeper</include>
<include>com.101tec:zkclient</include>
</includes>
</artifactSet>
<relocations combine.children="append">
<relocation>
<pattern>com.fasterxml.jackson.core</pattern>
<shadedPattern>org.apache.flink.formats.avro.registry.confluent.shaded.com.fasterxml.jackson.core</shadedPattern>
<pattern>com.fasterxml.jackson</pattern>
<shadedPattern>org.apache.flink.formats.avro.registry.confluent.shaded.com.fasterxml.jackson</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.zookeeper</pattern>
<shadedPattern>org.apache.flink.formats.avro.registry.confluent.shaded.org.apache.zookeeper</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.jute</pattern>
<shadedPattern>org.apache.flink.formats.avro.registry.confluent.shaded.org.apache.jute</shadedPattern>
</relocation>
<relocation>
<pattern>org.I0Itec.zkclient</pattern>
<shadedPattern>org.apache.flink.formats.avro.registry.confluent.shaded.org.101tec</shadedPattern>
</relocation>
</relocations>
</configuration>
Expand Down

0 comments on commit 339ec17

Please sign in to comment.