Author: mbenson
Date: Tue Mar 11 15:55:32 2014
New Revision: 1576392
URL: http://svn.apache.org/r1576392
Log:
add PMD, findbugs
Modified:
commons/proper/weaver/trunk/modules/privilizer/api/pom.xml
Modified: commons/proper/weaver/trunk/modules/privilizer/api/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/weaver/trunk/modules/privilizer/api/pom.xml?rev=1576392&r1=1576391&r2=1576392&view=diff
==============================================================================
--- commons/proper/weaver/trunk/modules/privilizer/api/pom.xml (original)
+++ commons/proper/weaver/trunk/modules/privilizer/api/pom.xml Tue Mar 11
15:55:32 2014
@@ -61,6 +61,15 @@ under the License.
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ <configuration>
+ <rulesets>
+ <ruleset>/org/apache/commons/weaver/pmd.xml</ruleset>
+ </rulesets>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle.version}</version>
<configuration>
@@ -68,6 +77,14 @@ under the License.
<headerLocation>org/apache/commons/weaver/license-header.txt</headerLocation>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <configuration>
+ <xmlOutput>true</xmlOutput>
+
<excludeFilterFile>/org/apache/commons/weaver/findbugs-exclude-filter.xml</excludeFilterFile>
+ </configuration>
+ </plugin>
</plugins>
</reporting>
</project>