This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-exec.git
commit 8c4a83f6c7cd4e8731a5126c8699e0836eee70d0 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Dec 29 10:15:28 2023 -0500 Manage Checkstyle plugin configuration --- pom.xml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/pom.xml b/pom.xml index fa78b18c..92978ef9 100644 --- a/pom.xml +++ b/pom.xml @@ -58,7 +58,19 @@ </dependencies> <build> - <defaultGoal>clean verify apache-rat:check japicmp:cmp checkstyle:check pmd:cpd-check pmd:check javadoc:javadoc</defaultGoal> + <defaultGoal>clean verify apache-rat:check japicmp:cmp checkstyle:check pmd:cpd-check pmd:check javadoc:javadoc</defaultGoal> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <configLocation>${basedir}/src/conf/checkstyle.xml</configLocation> + <enableRulesSummary>false</enableRulesSummary> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> @@ -98,14 +110,6 @@ </ignorePathsToDelete> </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - <configuration> - <configLocation>${basedir}/src/conf/checkstyle.xml</configLocation> - <enableRulesSummary>false</enableRulesSummary> - </configuration> - </plugin> </plugins> </build> @@ -137,10 +141,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> - <configuration> - <configLocation>${basedir}/src/conf/checkstyle.xml</configLocation> - <enableRulesSummary>false</enableRulesSummary> - </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>