I spent some time to compare what modules are specified in
Geronimo-axis2\pom.xml and what versions specified in dependencyManagement
for the common modules. The following 6 modules have different versions.
Seems all modules in axis2\pom.xml have newer versions except jaxb-impl
which moved to 2.0.3 very recently. Is there any plan to move to the
module versions (except jaxb-impl) specified below in root pom.xml?
>From Geronimo-axis2\pom.xml:
<dependency>
<groupId>org.apache.ws.commons.schema</groupId>
<artifactId>XmlSchema</artifactId>
<version>1.2</version> <!--1.1 in root pom.xml-->
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1</version> <!--1.0.4 in root pom.xml-->
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
<groupId>logkit</groupId>
<artifactId>logkit</artifactId>
</exclusion>
<exclusion>
<groupId>avalon-framework</groupId>
<artifactId>avalon-framework</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>wsdl4j</groupId>
<artifactId>wsdl4j</artifactId>
<version>1.6.2</version> <!--1.6.1 in root pom.xml-->
</dependency>
<dependency>
<groupId>xmlbeans</groupId>
<artifactId>xbean</artifactId>
<version>2.2.0</version> <!--2.0.0 in root pom.xml-->
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.0.2</version> <!--2.0.3 in root pom.xml-->
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.0.2</version> <!--2.0 in root pom.xml-->
</dependency>
</dependencies>
Thanks, Lin