On Aug 18, 2008, at 11:08 AM, Jarek Gawor wrote:
David,
This is / should be unnecessary. jaxb-api 2.1 does not have a
dependency on jsr173_api (it has a dependency on stax-api which is
already excluded). jaxb-api 2.0 does have a dependency on jsr173_api
but we are not using that version anymore.
you'd think.... however this is the jaxb-api 2.1 pom on my machine
that I believe I downloaded from one of the sun maven repos...
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.1</version>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jsr173_api</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
</project>
So I think along with not being willing to publish their artifacts
properly sun is revising history and changing released poms. I'd
prefer to keep both exclusions in case both poms are in the wild.
thanks
david jencks
Jarek
On Mon, Aug 18, 2008 at 1:57 PM, <[EMAIL PROTECTED]> wrote:
Author: djencks
Date: Mon Aug 18 10:57:27 2008
New Revision: 686837
URL: http://svn.apache.org/viewvc?rev=686837&view=rev
Log:
some copies of jaxb-impl pom seem to depend on jsr173_api instead
of stax-api
Modified:
geronimo/server/trunk/pom.xml
Modified: geronimo/server/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/geronimo/server/trunk/pom.xml?rev=686837&r1=686836&r2=686837&view=diff
=
=
=
=
=
=
=
=
=
=====================================================================
--- geronimo/server/trunk/pom.xml (original)
+++ geronimo/server/trunk/pom.xml Mon Aug 18 10:57:27 2008
@@ -1205,6 +1205,10 @@
<version>2.1</version>
<exclusions>
<exclusion>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jsr173_api</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>javax.xml.stream</groupId>
<artifactId>stax-api</artifactId>
</exclusion>