Author: ffang
Date: Wed May 27 01:17:15 2009
New Revision: 778950
URL: http://svn.apache.org/viewvc?rev=778950&view=rev
Log:
Merged revisions 778719 via svnmerge from
https://svn.apache.org/repos/asf/cxf/trunk
........
r778719 | ffang | 2009-05-26 22:36:08 +0800 (Tue, 26 May 2009) | 1 line
[CXF-2240]add ibmjdk profile for cxf-codegen-plugin
........
Modified:
cxf/branches/2.1.x-fixes/ (props changed)
cxf/branches/2.1.x-fixes/maven-plugins/codegen-plugin/pom.xml
Propchange: cxf/branches/2.1.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified: cxf/branches/2.1.x-fixes/maven-plugins/codegen-plugin/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/branches/2.1.x-fixes/maven-plugins/codegen-plugin/pom.xml?rev=778950&r1=778949&r2=778950&view=diff
==============================================================================
--- cxf/branches/2.1.x-fixes/maven-plugins/codegen-plugin/pom.xml (original)
+++ cxf/branches/2.1.x-fixes/maven-plugins/codegen-plugin/pom.xml Wed May 27
01:17:15 2009
@@ -99,5 +99,24 @@
<connection>scm:svn:http://svn.apache.org/repos/asf/cxf/trunk/maven-plugins/codegen-plugin</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/cxf/trunk/maven-plugins/codegen-plugin</developerConnection>
</scm>
+
+ <profiles>
+ <profile>
+ <id>ibmjdk</id>
+ <activation>
+ <property>
+ <name>java.vendor</name>
+ <value>IBM Corporation</value>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.8.1</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ </profiles>
-</project>
\ No newline at end of file
+</project>