Skip to content

Commit

Permalink
Add maven enforce plugin with rule to avoid dependency convergence is…
Browse files Browse the repository at this point in the history
  • Loading branch information
jogep committed Feb 9, 2019
1 parent c58e492 commit 67d40ce
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,24 @@
<skipRuntimeScope>true</skipRuntimeScope>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M2</version>
<executions>
<execution>
<id>enforce</id>
<configuration>
<rules>
<dependencyConvergence />
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>

Expand Down

0 comments on commit 67d40ce

Please sign in to comment.