Author: ggregory
Date: Mon Apr 8 20:40:45 2013
New Revision: 1465773
URL: http://svn.apache.org/r1465773
Log:
Use 2.9.1 instead of 2.10; 2.10 seems to scan the 'target' dir and wants
license headers in .properties to be the header for Java files.
Modified:
commons/proper/csv/trunk/pom.xml
Modified: commons/proper/csv/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/csv/trunk/pom.xml?rev=1465773&r1=1465772&r2=1465773&view=diff
==============================================================================
--- commons/proper/csv/trunk/pom.xml (original)
+++ commons/proper/csv/trunk/pom.xml Mon Apr 8 20:40:45 2013
@@ -150,12 +150,23 @@ CSV files of various types.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.10</version>
+ <!-- Use 2.9.1 instead of 2.10; 2.10 seems to scan the 'target'
+ dir and wants license headers in .properties to be the header for
+ Java files. -->
+ <version>2.9.1</version>
<configuration>
<configLocation>${basedir}/checkstyle.xml</configLocation>
<enableRulesSummary>false</enableRulesSummary>
<headerFile>${basedir}/LICENSE-header.txt</headerFile>
</configuration>
+ <!-- We need to specify reportSets because 2.9.1 creates two reports
-->
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>checkstyle</report>
+ </reports>
+ </reportSet>
+ </reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>