Author: dkulp
Date: Sun Jan 8 14:05:32 2012
New Revision: 1228850
URL: http://svn.apache.org/viewvc?rev=1228850&view=rev
Log:
Fix it test with maven 2.2.1
Modified:
cxf/trunk/systests/wsdl_maven/codegen/src/it/it-parent/pom.xml
Modified: cxf/trunk/systests/wsdl_maven/codegen/src/it/it-parent/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/systests/wsdl_maven/codegen/src/it/it-parent/pom.xml?rev=1228850&r1=1228849&r2=1228850&view=diff
==============================================================================
--- cxf/trunk/systests/wsdl_maven/codegen/src/it/it-parent/pom.xml (original)
+++ cxf/trunk/systests/wsdl_maven/codegen/src/it/it-parent/pom.xml Sun Jan 8
14:05:32 2012
@@ -24,7 +24,7 @@
<version>1-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
- <cxf.version>@project.version@</cxf.version>
+ <cxf.version>@project.version@</cxf.version>
</properties>
<build>
<pluginManagement>
@@ -34,6 +34,15 @@
<artifactId>cxf-codegen-plugin</artifactId>
<version>@project.version@</version>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.3.2</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
</plugins>
</pluginManagement>
</build>