0 Replies Latest reply on Feb 28, 2011 6:22 AM by nimo22

    actual jaxb-libs

    nimo22

      Does Jboss 6 final uses actual jaxb-libs?

       

      I find out that @XmlAccessorOrder(XmlAccessOrder.UNDEFINED) is ignored within my source.

       

      This was a bug - according to this http://java.net/jira/browse/JAXB-503 the bug was fixed in version 2.1.10.

       

      Using this in maven

       

       

      <dependency>

      <groupId>javax.xml.bind</groupId>

      <artifactId>jaxb-api</artifactId>

      <version>2.2.2</version>

      <scope>compile</scope>

      </dependency>

      <dependency>

      <groupId>com.sun.xml.bind</groupId>

      <artifactId>jaxb-impl</artifactId>

      <version>2.2.2</version>

      </dependency>

       

       

      does not help

       

      @XmlAccessorOrder(XmlAccessOrder.UNDEFINED) is totally ignored. Is there a difference of using jboss-jaxb-api_2.2_spec?