Author: stephenc Date: Mon Jul 8 09:23:55 2013 New Revision: 1500622 URL: http://svn.apache.org/r1500622 Log: add rat to release profile (ignoring errors for now)
Modified: maven/pom/trunk/maven/pom.xml Modified: maven/pom/trunk/maven/pom.xml URL: http://svn.apache.org/viewvc/maven/pom/trunk/maven/pom.xml?rev=1500622&r1=1500621&r2=1500622&view=diff ============================================================================== --- maven/pom/trunk/maven/pom.xml (original) +++ maven/pom/trunk/maven/pom.xml Mon Jul 8 09:23:55 2013 @@ -922,6 +922,30 @@ under the License. <profiles> <profile> + <id>apache-release</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <inherited>true</inherited> + <executions> + <execution> + <id>check</id> + <goals> + <goal>check</goal> + </goals> + <configuration> + <!-- phase 1: measure the size of the issue --> + <ignoreErrors>true</ignoreErrors> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + <profile> <id>rat</id> <build> <plugins>