Repository: incubator-juneau Updated Branches: refs/heads/master ead200b34 -> d81ce6fb2
Add apache-rat plugin to root pom.xml Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau/commit/d81ce6fb Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau/tree/d81ce6fb Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau/diff/d81ce6fb Branch: refs/heads/master Commit: d81ce6fb248413be916803d9bd1361637aaf13cc Parents: ead200b Author: jamesbognar <[email protected]> Authored: Sun Sep 4 21:42:02 2016 -0400 Committer: jamesbognar <[email protected]> Committed: Sun Sep 4 21:42:02 2016 -0400 ---------------------------------------------------------------------- pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d81ce6fb/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index c32eb40..e2aa388 100644 --- a/pom.xml +++ b/pom.xml @@ -126,6 +126,24 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes> + <exclude>**/rat.txt</exclude> + <exclude>**/*.log</exclude> + </excludes> + </configuration> + <executions> + <execution> + <phase>validate</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </pluginManagement> </build>
