Author: bimargulies
Date: Wed Aug 19 13:01:52 2009
New Revision: 805784
URL: http://svn.apache.org/viewvc?rev=805784&view=rev
Log:
Don't checkstyle generated code.
Modified:
cxf/trunk/distribution/pom.xml
Modified: cxf/trunk/distribution/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/distribution/pom.xml?rev=805784&r1=805783&r2=805784&view=diff
==============================================================================
--- cxf/trunk/distribution/pom.xml (original)
+++ cxf/trunk/distribution/pom.xml Wed Aug 19 13:01:52 2009
@@ -409,6 +409,19 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <id>validate</id>
+ <configuration>
+ <excludes>**/target/generated-sources/**</excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>