Skip to content

Commit

Permalink
Move Enforcer plugin config to root pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernard31 committed Jul 19, 2022
1 parent dd58b2c commit 99491de
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
19 changes: 0 additions & 19 deletions build-config/pom.xml
Expand Up @@ -115,25 +115,6 @@ Contributors:
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<dependencyConvergence></dependencyConvergence>
<requireMavenVersion>
<version>3.6.0</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
Expand Down
19 changes: 19 additions & 0 deletions pom.xml
Expand Up @@ -460,6 +460,25 @@ Contributors:
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<configuration>
<rules>
<dependencyConvergence></dependencyConvergence>
<requireMavenVersion>
<version>3.6.0</version>
</requireMavenVersion>
</rules>
</configuration>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 99491de

Please sign in to comment.