Turn on rat by default so that we can move toward any standard build passing being a viable release candidate. Anything important that may block a release

should be run as a standard part of the release. It's an anti-pattern, and very annoying, to have something required only be run during the release process.
This commit is contained in:
Jason van Zyl 2014-02-15 13:14:16 -05:00
parent 969a35dd42
commit fe4751605c
1 changed files with 9 additions and 15 deletions

24
pom.xml
View File

@ -459,6 +459,14 @@
<exclude>**/*.odg</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>check</id>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
@ -500,8 +508,7 @@
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<inherited>false</inherited>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes combine.children="append">
<exclude>bootstrap/**</exclude>
@ -541,19 +548,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<inherited>true</inherited>
<executions>
<execution>
<id>check</id>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>