James M Snell wrote:
Ok all, I've gone through and updated a bunch of the dependencies. All
of the tests are passing. Maven'ites will need to go through and update
the maven build to match, although the old dependencies should continue
to work as well.
A candidate diff for affected poms is attached. Two notes: xmlsec is
still stuck, AFAICT at 1.3.0 (1.4.1 in ant build), and I removed all
references to the StAX RI (IIUC, it's not needed when woodstox is on the
classpath).
cheers,
AC
Index: core/pom.xml
===================================================================
--- core/pom.xml (revision 561209)
+++ core/pom.xml (working copy)
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.apache.abdera</groupId>
<artifactId>abdera-i18n</artifactId>
- <version>${project.version}</version>
+ <version>0.3.0-incubating-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
Index: extensions/pom.xml
===================================================================
--- extensions/pom.xml (revision 561209)
+++ extensions/pom.xml (working copy)
@@ -81,12 +81,12 @@
<artifactId>stax-api</artifactId>
</dependency>
<dependency>
- <groupId>stax</groupId>
- <artifactId>stax</artifactId>
- </dependency>
- <dependency>
<groupId>woodstox</groupId>
<artifactId>wstx-asl</artifactId>
</dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </dependency>
</dependencies>
</project>
Index: parser/pom.xml
===================================================================
--- parser/pom.xml (revision 561209)
+++ parser/pom.xml (working copy)
@@ -61,10 +61,6 @@
<artifactId>stax-api</artifactId>
</dependency>
<dependency>
- <groupId>stax</groupId>
- <artifactId>stax</artifactId>
- </dependency>
- <dependency>
<groupId>woodstox</groupId>
<artifactId>wstx-asl</artifactId>
</dependency>
Index: pom.xml
===================================================================
--- pom.xml (revision 561209)
+++ pom.xml (working copy)
@@ -184,7 +184,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>3.8.2</version>
+ <version>4.3</version>
<scope>test</scope>
</dependency>
@@ -198,7 +198,7 @@
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
- <version>3.0</version>
+ <version>3.1-rc1</version>
<scope>compile</scope>
</dependency>
@@ -212,41 +212,28 @@
<dependency>
<groupId>org.apache.ws.commons.axiom</groupId>
<artifactId>axiom-api</artifactId>
- <version>1.2.1</version>
+ <version>1.2.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.ws.commons.axiom</groupId>
<artifactId>axiom-impl</artifactId>
- <version>1.2.1</version>
+ <version>1.2.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>stax</groupId>
<artifactId>stax-api</artifactId>
- <version>1.0</version>
+ <version>1.0.1</version>
<scope>compile</scope>
</dependency>
-
+
<dependency>
- <groupId>stax</groupId>
- <artifactId>stax</artifactId>
- <version>1.1.2-dev</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <groupId>xmlbeans</groupId>
- <artifactId>xmlbeans-jsr173-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
-
- <dependency>
<groupId>woodstox</groupId>
<artifactId>wstx-asl</artifactId>
- <version>2.0.5</version>
+ <version>3.1.2</version>
<scope>runtime</scope>
</dependency>
@@ -260,14 +247,14 @@
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
- <version>1.1-beta-7</version>
+ <version>1.1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>xml-security</groupId>
<artifactId>xmlsec</artifactId>
- <version>1.3.0</version>
+ <version>1.3.0</version> <!-- 1.4.1 -->
<scope>compile</scope>
</dependency>