This is an automated email from the ASF dual-hosted git repository. hboutemy pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-doxia-book-renderer.git
commit a3a31ddb20617e0a3910b4f9038e6f55e17a157b Author: Herve Boutemy <[email protected]> AuthorDate: Sun Apr 10 22:51:30 2016 +0000 rat is already run on each build since maven-parent 25: now configuration enhancements are to be put in pluginManagement git-svn-id: https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk@1738484 13f79535-47bb-0310-9956-ffa450edef68 --- pom.xml | 32 ++++++++++++++------------------ 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/pom.xml b/pom.xml index abd22bf..44c650f 100644 --- a/pom.xml +++ b/pom.xml @@ -131,6 +131,20 @@ under the License. </dependencies> <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes combine.children="append"> + <exclude>src/test/resources/expected/doc-book/plexus-user-guide.xml</exclude> + <exclude>src/test/resources/book-1/section-*.apt</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.codehaus.modello</groupId> @@ -171,24 +185,6 @@ under the License. </systemPropertyVariables> </configuration> </plugin> - <plugin> - <groupId>org.apache.rat</groupId> - <artifactId>apache-rat-plugin</artifactId> - <configuration> - <excludes combine.children="append"> - <exclude>src/test/resources/expected/doc-book/plexus-user-guide.xml</exclude> - <exclude>src/test/resources/book-1/section-*.apt</exclude> - </excludes> - </configuration> - <executions> - <execution> - <id>check</id> - <goals> - <goal>check</goal> - </goals> - </execution> - </executions> - </plugin> </plugins> </build>
