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 22:59:27 UTC

svn commit: r749449 - /cxf/trunk/parent/pom.xml

Author: bimargulies
Date: Mon Mar  2 21:59:27 2009
New Revision: 749449

URL: http://svn.apache.org/viewvc?rev=749449&view=rev
Log:
Piece 1 of CXF-2079, move Stax dependencies to profile-controlled properties.

Modified:
    cxf/trunk/parent/pom.xml

Modified: cxf/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/parent/pom.xml?rev=749449&r1=749448&r2=749449&view=diff
==============================================================================
--- cxf/trunk/parent/pom.xml (original)
+++ cxf/trunk/parent/pom.xml Mon Mar  2 21:59:27 2009
@@ -56,6 +56,9 @@
         <saaj.version>1.3</saaj.version>
         <spring.version>2.5.5</spring.version>
         <spring.mock>spring-test</spring.mock>
+	<stax.impl.groupId>org.codehaus.woodstox</stax.impl.groupId>
+	<stax.impl.artifactId>wstx-asl</stax.impl.artifactId>
+	<stax.impl.version>3.2.6</stax.impl.version>
         <wsdl4j.version>1.6.2</wsdl4j.version>
         <xmlbeans.version>2.3.0</xmlbeans.version>
 	<xmlschema.version>1.4.3</xmlschema.version>
@@ -515,9 +518,10 @@
                 </exclusions>
             </dependency>
             <dependency>
-                <groupId>org.codehaus.woodstox</groupId>
-                <artifactId>wstx-asl</artifactId>
-                <version>3.2.6</version>
+                <groupId>${stax.impl.groupId}</groupId>
+                <artifactId>${stax.impl.artifactId}</artifactId>
+                <version>${stax.impl.version}</version>
+<!-- these are motivated by Woodstox, but they can't hurt with others. -->
                 <exclusions>
                     <exclusion>
                         <groupId>stax</groupId>
@@ -1009,6 +1013,14 @@
     </reporting>
 
     <profiles>
+        <profile>
+	  <id>sjsxp</id>
+	  <properties>
+	    <stax.impl.groupId>com.sun.xml.stream</stax.impl.groupId>
+	    <stax.impl.artifactId>sjsxp</stax.impl.artifactId>
+	    <stax.impl.version>1.0.1</stax.impl.version>
+	  </properties>
+	</profile>
 	<profile>
 	  <id>axis2-saaj</id>
 	  <properties>