diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-06-15 08:00:29 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-06-15 08:00:29 +0000 |
commit | de64a50f0bd022e0cf2f9f4e1942bf55e7ae6c2a (patch) | |
tree | d58aca5fd5d5c78b6e860cf0193d0b83e6b0ffd5 /sca-java-2.x/trunk/itest/distribution/legal-checks | |
parent | b401e22e38e343373cff386c4422bcf92d97fbbf (diff) |
Move rat plugin run to the distribution itest
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@954739 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/itest/distribution/legal-checks')
-rw-r--r-- | sca-java-2.x/trunk/itest/distribution/legal-checks/pom.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/itest/distribution/legal-checks/pom.xml b/sca-java-2.x/trunk/itest/distribution/legal-checks/pom.xml index 3be416937e..f5ea2d04b8 100644 --- a/sca-java-2.x/trunk/itest/distribution/legal-checks/pom.xml +++ b/sca-java-2.x/trunk/itest/distribution/legal-checks/pom.xml @@ -43,5 +43,28 @@ </profiles> <build> + <plugins> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <version>0.6</version> + <executions> + <execution> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + <configuration> + <basedir>../../../distribution/all/target/apache-tuscany-sca-all-2.0-SNAPSHOT.dir</basedir> + <excludeSubProjects>false</excludeSubProjects> + <excludes> + <exclude>tuscany-sca-2.0-SNAPSHOT/CHANGES</exclude> + <exclude>**/MANIFEST.MF</exclude> + <exclude>tuscany-sca-2.0-SNAPSHOT/features/configuration/config.ini</exclude> + </excludes> + </configuration> + </plugin> + </plugins> </build> </project> |