This is an automated email from the ASF dual-hosted git repository. chesnay pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink-shaded.git
commit d7c817e7d9f6325362518c15821fe6bf8aca5275 Author: zentol <[email protected]> AuthorDate: Fri Sep 28 12:57:07 2018 +0200 [FLINK-10458][build] Enable dependency convergence --- pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pom.xml b/pom.xml index e39a244..7581102 100644 --- a/pom.xml +++ b/pom.xml @@ -137,6 +137,24 @@ under the License. <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> + <rules> + <dependencyConvergence/> + </rules> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <version>0.11</version><!--$NO-MVN-MAN-VER$-->
