Updated Branches: refs/heads/1.6.x d731c7168 -> 75fbac01e
JCLOUDS-28. Add rat check to POM. Project: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-cli/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-cli/commit/0d8c3d9e Tree: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-cli/tree/0d8c3d9e Diff: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-cli/diff/0d8c3d9e Branch: refs/heads/1.6.x Commit: 0d8c3d9eca7aaa051d2a7682243c9bbb5acaad27 Parents: d731c71 Author: Andrew Bayer <[email protected]> Authored: Fri May 10 16:17:13 2013 -0700 Committer: Andrew Bayer <[email protected]> Committed: Mon May 13 12:09:11 2013 -0700 ---------------------------------------------------------------------- pom.xml | 39 ++++++++++++++++++++++++++++++++++++++- 1 files changed, 38 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-jclouds-cli/blob/0d8c3d9e/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index cc2739e..f156ac1 100644 --- a/pom.xml +++ b/pom.xml @@ -94,8 +94,45 @@ <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>org.apache.felix</groupId> + <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${maven-bundle-plugin.version}</version> <extensions>true</extensions>
