found the problem:

CXF pom makes the project use jaxb-impl version 2.1.0.
Without CXF the project uses the JDK default which was 2.1.10 in my case.
see:
http://jaxb.java.net/guide/Which_JAXB_RI_is_included_in_which_JDK_.html

I added the following under dependency management to fix the problem
<dependency>
        <groupId>com.sun.xml.bind</groupId>
        <artifactId>jaxb-impl</artifactId>
        <version>2.2.5</version>
        <type>jar</type>
        <scope>compile</scope>
</dependency>

--
View this message in context: 
http://cxf.547215.n5.nabble.com/CXF-is-interfering-with-jaxb-marshalling-tp5504544p5505000.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to