You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2020/05/10 19:38:30 UTC

[ws-axiom] 02/02: Remove the stax.impl.* properties

This is an automated email from the ASF dual-hosted git repository.

veithen pushed a commit to branch 1.2.x
in repository https://gitbox.apache.org/repos/asf/ws-axiom.git

commit c9e2d03c13a2daea1944c70d13a733fd25b6eb70
Author: Andreas Veithen <ve...@apache.org>
AuthorDate: Sun May 10 20:21:02 2020 +0100

    Remove the stax.impl.* properties
---
 axiom-api/pom.xml                  |  4 ++--
 implementations/axiom-dom/pom.xml  |  4 ++--
 implementations/axiom-impl/pom.xml |  4 ++--
 implementations/fom-impl/pom.xml   |  4 ++--
 pom.xml                            | 19 +++----------------
 systests/old-tests/pom.xml         |  4 ++--
 testing/xml-testsuite/pom.xml      |  4 ++--
 7 files changed, 15 insertions(+), 28 deletions(-)

diff --git a/axiom-api/pom.xml b/axiom-api/pom.xml
index c450335..cdd26f0 100644
--- a/axiom-api/pom.xml
+++ b/axiom-api/pom.xml
@@ -76,8 +76,8 @@
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>${stax.impl.groupid}</groupId>
-            <artifactId>${stax.impl.artifact}</artifactId>
+            <groupId>org.codehaus.woodstox</groupId>
+            <artifactId>woodstox-core-asl</artifactId>
             <scope>test</scope>
         </dependency>
         <dependency>
diff --git a/implementations/axiom-dom/pom.xml b/implementations/axiom-dom/pom.xml
index d9b6707..2247e81 100644
--- a/implementations/axiom-dom/pom.xml
+++ b/implementations/axiom-dom/pom.xml
@@ -51,8 +51,8 @@
             <optional>true</optional>
         </dependency>
         <dependency>
-            <groupId>${stax.impl.groupid}</groupId>
-            <artifactId>${stax.impl.artifact}</artifactId>
+            <groupId>org.codehaus.woodstox</groupId>
+            <artifactId>woodstox-core-asl</artifactId>
         </dependency>
         <dependency>
             <groupId>junit</groupId>
diff --git a/implementations/axiom-impl/pom.xml b/implementations/axiom-impl/pom.xml
index 60310b0..6ea881c 100644
--- a/implementations/axiom-impl/pom.xml
+++ b/implementations/axiom-impl/pom.xml
@@ -45,8 +45,8 @@
             <optional>true</optional>
         </dependency>
         <dependency>
-            <groupId>${stax.impl.groupid}</groupId>
-            <artifactId>${stax.impl.artifact}</artifactId>
+            <groupId>org.codehaus.woodstox</groupId>
+            <artifactId>woodstox-core-asl</artifactId>
         </dependency>
         <dependency>
             <groupId>commons-logging</groupId>
diff --git a/implementations/fom-impl/pom.xml b/implementations/fom-impl/pom.xml
index ada1967..9da0c10 100644
--- a/implementations/fom-impl/pom.xml
+++ b/implementations/fom-impl/pom.xml
@@ -43,8 +43,8 @@
             <version>${project.version}</version>
         </dependency>
         <dependency>
-            <groupId>${stax.impl.groupid}</groupId>
-            <artifactId>${stax.impl.artifact}</artifactId>
+            <groupId>org.codehaus.woodstox</groupId>
+            <artifactId>woodstox-core-asl</artifactId>
         </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>
diff --git a/pom.xml b/pom.xml
index b604d04..f52b03c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -243,20 +243,7 @@
 
     <properties>
         <osgi.version>5.0.0</osgi.version>
-        <stax.impl.groupid>org.codehaus.woodstox</stax.impl.groupid>
-        <stax.impl.artifact>woodstox-core-asl</stax.impl.artifact>
-        <stax.impl.version>4.2.0</stax.impl.version>
         <failIfNoTests>false</failIfNoTests>
-        <!--
-        <stax.impl.groupid>com.sun.xml.stream</stax.impl.groupid>
-        <stax.impl.artifact>sjsxp</stax.impl.artifact>
-        <stax.impl.version>1.0.1</stax.impl.version>
-        -->
-        <!--
-        <stax.impl.groupid>stax</stax.impl.groupid>
-        <stax.impl.artifact>stax</stax.impl.artifact>
-        <stax.impl.version>1.2.0</stax.impl.version>
-        -->
         <shade.plugin.version>2.3</shade.plugin.version>
         <enforcer.plugin.version>1.4.1</enforcer.plugin.version>
         <spring.version>5.0.1.RELEASE</spring.version>
@@ -321,9 +308,9 @@
                 <version>1.2</version>
             </dependency>
             <dependency>
-                <groupId>${stax.impl.groupid}</groupId>
-                <artifactId>${stax.impl.artifact}</artifactId>
-                <version>${stax.impl.version}</version>
+                <groupId>org.codehaus.woodstox</groupId>
+                <artifactId>woodstox-core-asl</artifactId>
+                <version>4.2.0</version>
                 <exclusions>
                     <exclusion>
                         <groupId>stax</groupId>
diff --git a/systests/old-tests/pom.xml b/systests/old-tests/pom.xml
index 98d8212..41f97fd 100644
--- a/systests/old-tests/pom.xml
+++ b/systests/old-tests/pom.xml
@@ -74,8 +74,8 @@
             <scope>compile</scope>
         </dependency>
         <dependency>
-            <groupId>${stax.impl.groupid}</groupId>
-            <artifactId>${stax.impl.artifact}</artifactId>
+            <groupId>org.codehaus.woodstox</groupId>
+            <artifactId>woodstox-core-asl</artifactId>
         </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>
diff --git a/testing/xml-testsuite/pom.xml b/testing/xml-testsuite/pom.xml
index 8155b9b..d6d3ebf 100644
--- a/testing/xml-testsuite/pom.xml
+++ b/testing/xml-testsuite/pom.xml
@@ -36,8 +36,8 @@
 
     <dependencies>
         <dependency>
-            <groupId>${stax.impl.groupid}</groupId>
-            <artifactId>${stax.impl.artifact}</artifactId>
+            <groupId>org.codehaus.woodstox</groupId>
+            <artifactId>woodstox-core-asl</artifactId>
         </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>