6 Replies Latest reply on Nov 16, 2006 6:00 PM by aloubyansky

    jboss5 version synchronization

    starksm64

      the current jbossxb trunk (or the 1.0.0.CR7 being pulled into jbossas trunk) is not being built with the same level of jboss common jars as is used in jbossas:

       <componentref name="jboss/common-core" version="2.0.2.CR1"/>
       <componentref name="jboss/common-logging-log4j" version="2.0.1.GA"/>
       <componentref name="jboss/common-logging-jdk" version="2.0.1.GA"/>
       <componentref name="jboss/common-logging-spi" version="2.0.1.GA"/>
      


      the jbossxb trunk pom.xml is referring to 1.0:

       <dependency>
       <groupId>jboss.logging</groupId>
       <artifactId>jboss-logging-spi</artifactId>
       <version>1.0</version>
       </dependency>
       <dependency>
       <groupId>jboss.logging.log4j</groupId>
       <artifactId>jboss-logging-log4j</artifactId>
       <version>1.0</version>
       </dependency>
       <dependency>
       <groupId>jboss.common.core</groupId>
       <artifactId>jboss-common-core</artifactId>
       <version>1.0</version>
       <scope>compile</scope>
       </dependency>
      


      For what its using this may be ok, but we really need a separate version for jboss5 to ensure that we can maintain a jbossxb without affecting jboss4.x usage.