Updated Branches: refs/heads/1.6.x 1fa98c3bb -> 84d60bba1
JCLOUDS-28. Add rat check to POM. Project: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-labs/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-labs/commit/2418e3ac Tree: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-labs/tree/2418e3ac Diff: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-labs/diff/2418e3ac Branch: refs/heads/1.6.x Commit: 2418e3ac030e08d46accadeb3cc0444f0c70739d Parents: 1fa98c3 Author: Andrew Bayer <[email protected]> Authored: Fri May 10 15:59:00 2013 -0700 Committer: Andrew Bayer <[email protected]> Committed: Mon May 13 12:29:55 2013 -0700 ---------------------------------------------------------------------- pom.xml | 37 +++++++++++++++++++++++++++++++++++++ 1 files changed, 37 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-jclouds-labs/blob/2418e3ac/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 2c1a7ec..f4192f8 100644 --- a/pom.xml +++ b/pom.xml @@ -80,6 +80,43 @@ <build> <plugins> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <version>0.8</version> + <inherited>false</inherited> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + <configuration> + <excludes> + <exclude>**/BUILD.txt</exclude> + <exclude>**/CHANGES.txt</exclude> + <exclude>**/NOTICE-src.txt</exclude> + <exclude>**/README.md</exclude> + <exclude>.git/**</exclude> + <exclude>**/.gitignore</exclude> + <exclude>**/*.json</exclude> + <exclude>**/*.log*</exclude> + <exclude>**/TODO</exclude> + <exclude>.mailmap</exclude> + <exclude>.idea/**</exclude> + <exclude>**/*.iml</exclude> + <exclude>**/.project</exclude> + <exclude>**/.classpath</exclude> + <exclude>**/.settings/**</exclude> + <exclude>**/.checkstyle</exclude> + <exclude>**/target/**</exclude> + <exclude>.repository/**</exclude> + <!-- binary --> + </excludes> + </configuration> + </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId>
