This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-numbers.git
commit 31e1624b03c33590c60118207f2c92b6c7682bc2 Author: Alex Herbert <aherb...@apache.org> AuthorDate: Thu Aug 19 00:47:22 2021 +0100 Remove plugin checks from default goal These plugins already run using executions: apache-rat:check (validate) checkstyle:check (verify) Added to verify using executions: pmd:check spotbugs:check --- pom.xml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 703824a..379f070 100644 --- a/pom.xml +++ b/pom.xml @@ -206,7 +206,7 @@ <build> <!-- TODO: Add binary compatibility check when released. --> - <defaultGoal>clean verify apache-rat:check checkstyle:check pmd:check spotbugs:check javadoc:javadoc</defaultGoal> + <defaultGoal>clean verify javadoc:javadoc</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -285,6 +285,14 @@ <effort>Default</effort> <excludeFilterFile>${numbers.parent.dir}/src/main/resources/spotbugs/spotbugs-exclude-filter.xml</excludeFilterFile> </configuration> + <executions> + <execution> + <phase>verify</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> </plugin> <plugin> <artifactId>maven-pmd-plugin</artifactId> @@ -315,6 +323,14 @@ <excludeRoot>target/generated-sources</excludeRoot> </excludeRoots> </configuration> + <executions> + <execution> + <phase>verify</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> </plugin> <plugin> <groupId>org.apache.rat</groupId>