Author: jstrachan
Date: Thu May 10 10:52:09 2007
New Revision: 536950
URL: http://svn.apache.org/viewvc?view=rev&rev=536950
Log:
applied patch from Jon Anstey to fix up the CXF pom
Modified:
activemq/camel/trunk/camel-cxf/pom.xml
Modified: activemq/camel/trunk/camel-cxf/pom.xml
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-cxf/pom.xml?view=diff&rev=536950&r1=536949&r2=536950
==============================================================================
--- activemq/camel/trunk/camel-cxf/pom.xml (original)
+++ activemq/camel/trunk/camel-cxf/pom.xml Thu May 10 10:52:09 2007
@@ -23,7 +23,7 @@
<modelVersion>4.0.0</modelVersion>
<properties>
- <cxf.version>2.0-incubator-RC-SNAPSHOT</cxf.version>
+ <cxf.version>2.0-incubator-RC</cxf.version>
</properties>
<parent>
@@ -51,6 +51,7 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-core</artifactId>
+ <version>${cxf.version}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
@@ -156,6 +157,8 @@
</dependencies>
<build>
+ <defaultGoal>install</defaultGoal>
+
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
@@ -174,4 +177,13 @@
</plugin>
</plugins>
</build>
+
+ <profiles>
+ <profile>
+ <id>fastinstall</id>
+ <properties>
+ <maven.test.skip>true</maven.test.skip>
+ </properties>
+ </profile>
+ </profiles>
</project>