* BAEL-5834: Add scenario for maven dependency convergence * BAEL-5834: Remove Makefile to reduce complexity * BAEL-5834: Remove reference of Makefile --------- Co-authored-by: Tapan Avasthi <tavasthi@Tapans-MacBook-Air.local>
22 lines
670 B
XML
22 lines
670 B
XML
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
<version>3.3.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>enforce</id>
|
|
<configuration>
|
|
<rules>
|
|
<dependencyConvergence/>
|
|
</rules>
|
|
</configuration>
|
|
<goals>
|
|
<goal>enforce</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build> |