diff options
author | Olivier Lamy <olamy@apache.org> | 2012-07-02 15:40:11 +0000 |
---|---|---|
committer | Olivier Lamy <olamy@apache.org> | 2012-07-02 15:40:11 +0000 |
commit | f8984f5ffe80415fa7b9b2977dbb510ccdc70d81 (patch) | |
tree | 4535332e127a98ca11df68a08f4aec30cfed2a14 /pom.xml | |
parent | dd6e3d7793a2ee878c7b7eb4e1891c7f67346494 (diff) | |
download | archiva-f8984f5ffe80415fa7b9b2977dbb510ccdc70d81.tar.gz archiva-f8984f5ffe80415fa7b9b2977dbb510ccdc70d81.zip |
execute rat plugin in the default build
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1356306 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 51 |
1 files changed, 22 insertions, 29 deletions
@@ -837,6 +837,28 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes> + <exclude>.gitignore</exclude> + <exclude>DEPENDENCIES</exclude> + <exclude>README.txt</exclude> + <exclude>*.sh</exclude> + <exclude>.git/**</exclude> + </excludes> + </configuration> + <executions> + <execution> + <id>rat-check</id> + <goals> + <goal>check</goal> + </goals> + <phase>verify</phase> + </execution> + </executions> + </plugin> </plugins> </build> @@ -956,34 +978,5 @@ </build> </profile> - <profile> - <id>rat</id> - <build> - <plugins> - <plugin> - <groupId>org.apache.rat</groupId> - <artifactId>apache-rat-plugin</artifactId> - <configuration> - <excludes> - <exclude>.gitignore</exclude> - <exclude>DEPENDENCIES</exclude> - <exclude>README.txt</exclude> - <exclude>*.sh</exclude> - <exclude>.git/**</exclude> - </excludes> - </configuration> - <executions> - <execution> - <id>rat-check</id> - <goals> - <goal>check</goal> - </goals> - <phase>verify</phase> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> </profiles> </project> |