Author: dkulp
Date: Thu Aug 20 02:36:47 2009
New Revision: 806023
URL: http://svn.apache.org/viewvc?rev=806023&view=rev
Log:
Try adding config for checkstyle to reporting to see if it fixes sonar
Modified:
cxf/trunk/parent/pom.xml
Modified: cxf/trunk/parent/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/parent/pom.xml?rev=806023&r1=806022&r2=806023&view=diff
==============================================================================
--- cxf/trunk/parent/pom.xml (original)
+++ cxf/trunk/parent/pom.xml Thu Aug 20 02:36:47 2009
@@ -1137,6 +1137,20 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ <configuration>
+ <encoding>UTF-8</encoding>
+
<configLocation>cxf-checkstyle${checkstyle.extension}.xml</configLocation>
+ <consoleOutput>true</consoleOutput>
+ <failsOnError>true</failsOnError>
+ <linkXRef>false</linkXRef>
+
<suppressionsLocation>cxf-checkstyle-suppressions.xml</suppressionsLocation>
+ <sourceDirectory>${basedir}/src</sourceDirectory>
+ <excludes>**/archetype-resources/**/*.java</excludes>
+ </configuration>
+ </plugin>
</plugins>
</reporting>