hello, I see that camel-core, camel-jms and camel-spring transitively depends on jaxb-impl. What would be the reason for that?
This causes some problems when using jax-ws. java.lang.ClassCastException: com.sun.xml.bind.v2.runtime.JAXBContextImpl cannot be cast to com.sun.xml.internal.bind.api.JAXBRIContext at com.sun.xml.internal.ws.fault.SOAPFaultBuilder I had to do <exclusion> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> </exclusion> to prevent the ClassCastException using Camel 2.10.2 and Java 1.7.0_07 -- View this message in context: http://camel.465427.n5.nabble.com/Dependency-to-jaxb-impl-tp5722030.html Sent from the Camel - Users mailing list archive at Nabble.com.
