You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ff...@apache.org on 2009/05/26 16:36:08 UTC

svn commit: r778719 - /cxf/trunk/maven-plugins/codegen-plugin/pom.xml

Author: ffang
Date: Tue May 26 14:36:08 2009
New Revision: 778719

URL: http://svn.apache.org/viewvc?rev=778719&view=rev
Log:
[CXF-2240]add ibmjdk profile for cxf-codegen-plugin

Modified:
    cxf/trunk/maven-plugins/codegen-plugin/pom.xml

Modified: cxf/trunk/maven-plugins/codegen-plugin/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/maven-plugins/codegen-plugin/pom.xml?rev=778719&r1=778718&r2=778719&view=diff
==============================================================================
--- cxf/trunk/maven-plugins/codegen-plugin/pom.xml (original)
+++ cxf/trunk/maven-plugins/codegen-plugin/pom.xml Tue May 26 14:36:08 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>