[
https://issues.apache.org/jira/browse/FLINK-7840?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16220408#comment-16220408
]
ASF GitHub Bot commented on FLINK-7840:
---------------------------------------
Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/4827#discussion_r147137232
--- Diff: flink-test-utils-parent/flink-test-utils/pom.xml ---
@@ -117,6 +124,41 @@ under the License.
<inherited>true</inherited>
<extensions>true</extensions>
</plugin>
+
+ <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>io.netty:netty</include>
+ </includes>
+ </artifactSet>
+ <relocations
combine.children="append">
+ <relocation>
+
<pattern>org.jboss.netty</pattern>
+
<shadedPattern>org.apache.flink.shaded.testutils.org.jboss.netty</shadedPattern>
--- End diff --
ah ok. How come we aren't using flink-shaded-netty for that?
> Shade Akka's Netty Dependency
> -----------------------------
>
> Key: FLINK-7840
> URL: https://issues.apache.org/jira/browse/FLINK-7840
> Project: Flink
> Issue Type: Improvement
> Components: Build System
> Reporter: Stephan Ewen
> Assignee: Stephan Ewen
> Fix For: 1.4.0
>
>
> In order to avoid clashes between different Netty versions we should shade
> Akka's Netty away.
> These dependency version clashed manifest themselves in very subtle ways,
> like occasional deadlocks.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)