提交 cb1a5ecb 编写于 作者: R Robert Metzger

[FLINK-3287] Shade Curator dependency into flink-connector-kafka-0.8

上级 79058edb
......@@ -154,6 +154,33 @@ under the License.
<forkCount>1</forkCount>
</configuration>
</plugin>
<!-- Relocate curator -->
<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 combine.children="append">
<include>org.apache.flink:flink-shaded-curator-recipes</include>
</includes>
</artifactSet>
<relocations combine.children="append">
<relocation>
<pattern>org.apache.curator</pattern>
<shadedPattern>org.apache.flink.shaded.org.apache.curator</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册