Author: dkulp
Date: Fri Jun 29 14:33:42 2012
New Revision: 1355407
URL: http://svn.apache.org/viewvc?rev=1355407&view=rev
Log:
Merged revisions 1350788 via git cherry-pick from
https://svn.apache.org/repos/asf/cxf/trunk
........
r1350788 | dkulp | 2012-06-15 16:34:51 -0400 (Fri, 15 Jun 2012) | 2 lines
Turn the source checks on when building with java 7
........
Modified:
cxf/branches/2.6.x-fixes/parent/pom.xml
Modified: cxf/branches/2.6.x-fixes/parent/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/parent/pom.xml?rev=1355407&r1=1355406&r2=1355407&view=diff
==============================================================================
--- cxf/branches/2.6.x-fixes/parent/pom.xml (original)
+++ cxf/branches/2.6.x-fixes/parent/pom.xml Fri Jun 29 14:33:42 2012
@@ -1547,6 +1547,27 @@
<cxf.jaxb.xjc.version>${cxf.jaxb22.impl.version}</cxf.jaxb.xjc.version>
<jdk.version>1.6</jdk.version>
</properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+
<showDeprecation>${cxf.compile.show.deprecation}</showDeprecation>
+ <showWarnings>true</showWarnings>
+
<compilerArgument>${cxf.compile.flags}</compilerArgument>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
</profile>
<profile>
<id>validateServices</id>