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 d381482c96498ba42dcee378ee3209603b75de43 Author: Herve Boutemy <[email protected]> AuthorDate: Mon Jul 21 15:24:16 2014 +0000 configured license check git-svn-id: https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk@1612312 13f79535-47bb-0310-9956-ffa450edef68 --- pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pom.xml b/pom.xml index acf18d1..487fad4 100644 --- a/pom.xml +++ b/pom.xml @@ -170,6 +170,24 @@ under the License. </systemPropertyVariables> </configuration> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes> + <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>
