Skip to content

Commit

Permalink
[hotfix][build] Disable dependency convergence in flink-dist
Browse files Browse the repository at this point in the history
Previously mvn javadoc:aggregate goal was failing
  • Loading branch information
pnowojski committed Nov 10, 2017
1 parent 56aefcd commit eed41e1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions flink-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,21 @@ under the License.

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>dependency-convergence</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<skip>true</skip>
</configuration>
</execution>
</executions>
</plugin>

<!--unit tests-->
<!--plugin must appear BEFORE the shade-plugin to not mess up package order and include the non-uber JAR into the assembly-->
Expand Down

0 comments on commit eed41e1

Please sign in to comment.