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/27 04:11:39 UTC

svn commit: r778961 - in /cxf/branches/2.0.x-fixes: ./ maven-plugins/codegen-plugin/pom.xml

Author: ffang
Date: Wed May 27 02:11:39 2009
New Revision: 778961

URL: http://svn.apache.org/viewvc?rev=778961&view=rev
Log:
Merged revisions 778950 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/branches/2.1.x-fixes

................
  r778950 | ffang | 2009-05-27 09:17:15 +0800 (Wed, 27 May 2009) | 9 lines
  
  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.0.x-fixes/   (props changed)
    cxf/branches/2.0.x-fixes/maven-plugins/codegen-plugin/pom.xml

Propchange: cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.0.x-fixes/maven-plugins/codegen-plugin/pom.xml
URL: http://svn.apache.org/viewvc/cxf/branches/2.0.x-fixes/maven-plugins/codegen-plugin/pom.xml?rev=778961&r1=778960&r2=778961&view=diff
==============================================================================
--- cxf/branches/2.0.x-fixes/maven-plugins/codegen-plugin/pom.xml (original)
+++ cxf/branches/2.0.x-fixes/maven-plugins/codegen-plugin/pom.xml Wed May 27 02:11:39 2009
@@ -105,5 +105,24 @@
         <connection>scm:svn:http://svn.apache.org/repos/asf/cxf/branches/2.0.x-fixes/maven-plugins/codegen-plugin</connection>
         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/cxf/branches/2.0.x-fixes/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>