Skip to content

Commit

Permalink
[FLINK-7993][kafka] Sync curator shading patterns
Browse files Browse the repository at this point in the history
This closes apache#4953.
  • Loading branch information
zentol committed Nov 6, 2017
1 parent 114da93 commit 7978a17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
8 changes: 2 additions & 6 deletions flink-connectors/flink-connector-kafka-0.8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -213,15 +213,11 @@ under the License.
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes combine.children="append">
<include>org.apache.flink:flink-shaded-curator</include>
</includes>
</artifactSet>
<relocations combine.children="append">
<relocation>
<pattern>org.apache.curator</pattern>
<shadedPattern>org.apache.flink.shaded.org.apache.curator</shadedPattern>
<!-- IMPORTANT: This must be kept in sync with flink-runtime -->
<shadedPattern>org.apache.flink.shaded.curator.org.apache.curator</shadedPattern>
</relocation>
</relocations>
</configuration>
Expand Down
1 change: 1 addition & 0 deletions flink-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,7 @@ under the License.
</relocation>
<relocation>
<pattern>org.apache.curator</pattern>
<!-- IMPORTANT: This must be kept in sync with flink-connector-kafka-0.8 -->
<shadedPattern>org.apache.flink.shaded.curator.org.apache.curator</shadedPattern>
<excludes>
<!-- Do not relocate curator-test. This leads to problems for downstream
Expand Down

0 comments on commit 7978a17

Please sign in to comment.