You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by bi...@apache.org on 2009/03/02 23:08:34 UTC

svn commit: r749454 - in /cxf/trunk: api/pom.xml common/common/pom.xml rt/databinding/jaxb/pom.xml rt/databinding/xmlbeans/pom.xml tools/corba/pom.xml tools/javato/ws/pom.xml tools/validator/pom.xml tools/wsdlto/core/pom.xml tools/wsdlto/misc/pom.xml

Author: bimargulies
Date: Mon Mar  2 22:08:33 2009
New Revision: 749454

URL: http://svn.apache.org/viewvc?rev=749454&view=rev
Log:
More CXF-2079, rest of the POM changes.

Modified:
    cxf/trunk/api/pom.xml
    cxf/trunk/common/common/pom.xml
    cxf/trunk/rt/databinding/jaxb/pom.xml
    cxf/trunk/rt/databinding/xmlbeans/pom.xml
    cxf/trunk/tools/corba/pom.xml
    cxf/trunk/tools/javato/ws/pom.xml
    cxf/trunk/tools/validator/pom.xml
    cxf/trunk/tools/wsdlto/core/pom.xml
    cxf/trunk/tools/wsdlto/misc/pom.xml

Modified: cxf/trunk/api/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/api/pom.xml?rev=749454&r1=749453&r2=749454&view=diff
==============================================================================
--- cxf/trunk/api/pom.xml (original)
+++ cxf/trunk/api/pom.xml Mon Mar  2 22:08:33 2009
@@ -79,8 +79,8 @@
             <scope>provided</scope>
         </dependency>
         <dependency>
-            <groupId>org.codehaus.woodstox</groupId>
-            <artifactId>wstx-asl</artifactId>
+	  <groupId>${stax.impl.groupId}</groupId>
+	  <artifactId>${stax.impl.artifactId}</artifactId>
         </dependency>
         <dependency>
             <groupId>org.apache.neethi</groupId>

Modified: cxf/trunk/common/common/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/common/common/pom.xml?rev=749454&r1=749453&r2=749454&view=diff
==============================================================================
--- cxf/trunk/common/common/pom.xml (original)
+++ cxf/trunk/common/common/pom.xml Mon Mar  2 22:08:33 2009
@@ -128,8 +128,8 @@
         </dependency> 
 
         <dependency>
-            <groupId>org.codehaus.woodstox</groupId>
-            <artifactId>wstx-asl</artifactId>
+	  <groupId>${stax.impl.groupId}</groupId>
+	  <artifactId>${stax.impl.artifactId}</artifactId>
             <scope>test</scope>
         </dependency>
 

Modified: cxf/trunk/rt/databinding/jaxb/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/databinding/jaxb/pom.xml?rev=749454&r1=749453&r2=749454&view=diff
==============================================================================
--- cxf/trunk/rt/databinding/jaxb/pom.xml (original)
+++ cxf/trunk/rt/databinding/jaxb/pom.xml Mon Mar  2 22:08:33 2009
@@ -139,8 +139,8 @@
         </dependency>
 
         <dependency>
-            <groupId>org.codehaus.woodstox</groupId>
-            <artifactId>wstx-asl</artifactId>
+	    <groupId>${stax.impl.groupId}</groupId>
+	    <artifactId>${stax.impl.artifactId}</artifactId>
         </dependency>
 
 

Modified: cxf/trunk/rt/databinding/xmlbeans/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/databinding/xmlbeans/pom.xml?rev=749454&r1=749453&r2=749454&view=diff
==============================================================================
--- cxf/trunk/rt/databinding/xmlbeans/pom.xml (original)
+++ cxf/trunk/rt/databinding/xmlbeans/pom.xml Mon Mar  2 22:08:33 2009
@@ -93,14 +93,10 @@
             <artifactId>geronimo-stax-api_1.0_spec</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.codehaus.woodstox</groupId>
-            <artifactId>wstx-asl</artifactId>
+	    <groupId>${stax.impl.groupId}</groupId>
+	    <artifactId>${stax.impl.artifactId}</artifactId>
         </dependency>
 
-
-
-
-
         <dependency>
             <groupId>org.apache.cxf</groupId>
             <artifactId>cxf-rt-transports-local</artifactId>

Modified: cxf/trunk/tools/corba/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/tools/corba/pom.xml?rev=749454&r1=749453&r2=749454&view=diff
==============================================================================
--- cxf/trunk/tools/corba/pom.xml (original)
+++ cxf/trunk/tools/corba/pom.xml Mon Mar  2 22:08:33 2009
@@ -69,8 +69,8 @@
             <artifactId>XmlSchema</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.codehaus.woodstox</groupId>
-            <artifactId>wstx-asl</artifactId>
+	    <groupId>${stax.impl.groupId}</groupId>
+	    <artifactId>${stax.impl.artifactId}</artifactId>
         </dependency>
         <dependency>
             <groupId>wsdl4j</groupId>

Modified: cxf/trunk/tools/javato/ws/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/tools/javato/ws/pom.xml?rev=749454&r1=749453&r2=749454&view=diff
==============================================================================
--- cxf/trunk/tools/javato/ws/pom.xml (original)
+++ cxf/trunk/tools/javato/ws/pom.xml Mon Mar  2 22:08:33 2009
@@ -120,8 +120,8 @@
         </dependency>
 
         <dependency>
-            <groupId>org.codehaus.woodstox</groupId>
-            <artifactId>wstx-asl</artifactId>
+	    <groupId>${stax.impl.groupId}</groupId>
+	    <artifactId>${stax.impl.artifactId}</artifactId>
             <scope>runtime</scope>
         </dependency>
 

Modified: cxf/trunk/tools/validator/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/tools/validator/pom.xml?rev=749454&r1=749453&r2=749454&view=diff
==============================================================================
--- cxf/trunk/tools/validator/pom.xml (original)
+++ cxf/trunk/tools/validator/pom.xml Mon Mar  2 22:08:33 2009
@@ -80,8 +80,8 @@
         </dependency>
 
         <dependency>
-            <groupId>org.codehaus.woodstox</groupId>
-            <artifactId>wstx-asl</artifactId>
+	    <groupId>${stax.impl.groupId}</groupId>
+	    <artifactId>${stax.impl.artifactId}</artifactId>
             <scope>runtime</scope>
         </dependency>
         <dependency>

Modified: cxf/trunk/tools/wsdlto/core/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/tools/wsdlto/core/pom.xml?rev=749454&r1=749453&r2=749454&view=diff
==============================================================================
--- cxf/trunk/tools/wsdlto/core/pom.xml (original)
+++ cxf/trunk/tools/wsdlto/core/pom.xml Mon Mar  2 22:08:33 2009
@@ -103,8 +103,8 @@
             <artifactId>saaj-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.codehaus.woodstox</groupId>
-            <artifactId>wstx-asl</artifactId>
+	    <groupId>${stax.impl.groupId}</groupId>
+	    <artifactId>${stax.impl.artifactId}</artifactId>
             <scope>runtime</scope>
         </dependency>
         <dependency>

Modified: cxf/trunk/tools/wsdlto/misc/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/tools/wsdlto/misc/pom.xml?rev=749454&r1=749453&r2=749454&view=diff
==============================================================================
--- cxf/trunk/tools/wsdlto/misc/pom.xml (original)
+++ cxf/trunk/tools/wsdlto/misc/pom.xml Mon Mar  2 22:08:33 2009
@@ -73,8 +73,8 @@
             <artifactId>saaj-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.codehaus.woodstox</groupId>
-            <artifactId>wstx-asl</artifactId>
+	    <groupId>${stax.impl.groupId}</groupId>
+	    <artifactId>${stax.impl.artifactId}</artifactId>
             <scope>runtime</scope>
         </dependency>