Skip to content

Commit

Permalink
[FLINK-3458] [build] Disable shade-flink execution in flink-shaded-ha…
Browse files Browse the repository at this point in the history
…doop

The shade-flink execution of the parent pom caused the problem that the guava
dependencies were relocated twice in the flink-shaded-hadoop jar. In order to
avoid this, this patch disables the shade-flink execution.

This closes apache#1681.
  • Loading branch information
tillrohrmann committed Feb 23, 2016
1 parent 407c285 commit b204888
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions flink-shaded-hadoop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ under the License.
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<!--Disable shade-flink execution to avoid duplicate relocation of
dependencies-->
<id>shade-flink</id>
<phase>none</phase>
</execution>
<execution>
<id>shade-hadoop</id>
<phase>package</phase>
Expand Down

0 comments on commit b204888

Please sign in to comment.