Updated Branches: refs/heads/1.5.x d7fd5b3d5 -> 648795d74
JCLOUDS-24. Add RAT check Project: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/commit/28b0257b Tree: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/tree/28b0257b Diff: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/diff/28b0257b Branch: refs/heads/1.5.x Commit: 28b0257ba9c6b53ad24c4b4711ca50fd92f5323d Parents: d7fd5b3 Author: Andrew Bayer <[email protected]> Authored: Fri May 10 14:05:17 2013 -0700 Committer: Andrew Bayer <[email protected]> Committed: Fri May 10 17:10:29 2013 -0700 ---------------------------------------------------------------------- pom.xml | 39 ++++++++++++++++++++++++++++++++++++++- 1 files changed, 38 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-jclouds/blob/28b0257b/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index e2695e0..1501bc3 100644 --- a/pom.xml +++ b/pom.xml @@ -53,7 +53,44 @@ </modules> <build> <plugins> - <plugin> + <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>demos/getpath/src/test/resources/log4j.xml</exclude> + <!-- binary --> + </excludes> + </configuration> + </plugin> + <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.9.0</version>
