Updated Branches: refs/heads/master 23e4513cd -> 8d416653d
Added RAT plugin for convenience Project: http://git-wip-us.apache.org/repos/asf/incubator-curator/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-curator/commit/8d416653 Tree: http://git-wip-us.apache.org/repos/asf/incubator-curator/tree/8d416653 Diff: http://git-wip-us.apache.org/repos/asf/incubator-curator/diff/8d416653 Branch: refs/heads/master Commit: 8d416653d42a949141ccd9889b00f3fbd8baba09 Parents: 23e4513 Author: randgalt <[email protected]> Authored: Wed May 1 13:37:49 2013 -0700 Committer: randgalt <[email protected]> Committed: Wed May 1 13:37:49 2013 -0700 ---------------------------------------------------------------------- pom.xml | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-curator/blob/8d416653/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index c451555..fc0efa6 100644 --- a/pom.xml +++ b/pom.xml @@ -456,6 +456,28 @@ <arguments>-Dmaven.test.skip=true</arguments> </configuration> </plugin> + + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <version>0.8</version> + <configuration> + <numUnapprovedLicenses>0</numUnapprovedLicenses> + <excludeSubProjects>false</excludeSubProjects> + <excludes> + <exclude>**/*.confluence</exclude> + <exclude>**/.gitignore</exclude> + <exclude>**/DISCLAIMER</exclude> + <exclude>**/DEPENDENCIES</exclude> + <exclude>**/KEYS</exclude> + <exclude>**/LICENSE</exclude> + <exclude>**/NOTICE</exclude> + <exclude>**/README</exclude> + <exclude>**/CHANGES</exclude> + <exclude>**/RELEASE-NOTES</exclude> + </excludes> + </configuration> + </plugin> </plugins> </build> </project>
