Author: omalley
Date: Wed Aug 31 16:25:24 2011
New Revision: 1163686
URL: http://svn.apache.org/viewvc?rev=1163686&view=rev
Log:
GIRAPH-16. Add Apache RAT to the verify build step. (omalley)
Added:
incubator/giraph/trunk/CHANGELOG
Modified:
incubator/giraph/trunk/pom.xml
Added: incubator/giraph/trunk/CHANGELOG
URL:
http://svn.apache.org/viewvc/incubator/giraph/trunk/CHANGELOG?rev=1163686&view=auto
==============================================================================
--- incubator/giraph/trunk/CHANGELOG (added)
+++ incubator/giraph/trunk/CHANGELOG Wed Aug 31 16:25:24 2011
@@ -0,0 +1,5 @@
+Giraph Change Log
+
+Release 0.70.0 - unreleased
+
+ GIRAPH-16. Add Apache RAT to the verify build step. (omalley)
Modified: incubator/giraph/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/giraph/trunk/pom.xml?rev=1163686&r1=1163685&r2=1163686&view=diff
==============================================================================
--- incubator/giraph/trunk/pom.xml (original)
+++ incubator/giraph/trunk/pom.xml Wed Aug 31 16:25:24 2011
@@ -262,6 +262,29 @@ under the License.
</reportPlugins>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <version>0.7</version>
+ <executions>
+ <execution>
+ <phase>verify</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <excludeSubProjects>false</excludeSubProjects>
+ <numUnapprovedLicenses>0</numUnapprovedLicenses>
+ <excludes>
+ <exclude>CODE_CONVENTIONS</exclude>
+ <!-- generated content -->
+ <exclude>**/target/**</exclude>
+ <exclude>_bsp/**</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</build>