Author: janstey
Date: Mon Sep 29 11:49:47 2008
New Revision: 700206
URL: http://svn.apache.org/viewvc?rev=700206&view=rev
Log:
CAMEL-939 - Get CXF tests working on AIX.
Modified:
activemq/camel/trunk/components/camel-cxf/pom.xml
Modified: activemq/camel/trunk/components/camel-cxf/pom.xml
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-cxf/pom.xml?rev=700206&r1=700205&r2=700206&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-cxf/pom.xml (original)
+++ activemq/camel/trunk/components/camel-cxf/pom.xml Mon Sep 29 11:49:47 2008
@@ -327,5 +327,25 @@
<maven.test.skip>true</maven.test.skip>
</properties>
</profile>
+ <profile>
+ <id>ibm-jdk</id>
+ <activation>
+ <property>
+ <name>java.vendor</name>
+ <value>IBM Corporation</value>
+ </property>
+ </activation>
+ <!--
+ Add the Sun jaxp-ri as a dependency when using the ibm jdk, so that
+ cxf's dependency on the Sun saaj can work with the ibm jdk.
+ -->
+ <dependencies>
+ <dependency>
+ <groupId>com.sun.xml.parsers</groupId>
+ <artifactId>jaxp-ri</artifactId>
+ <version>1.4.2</version>
+ </dependency>
+ </dependencies>
+ </profile>
</profiles>
</project>