Claus Ibsen-2 wrote
>
> Hi
>
> Do you have mixed versions of Camel on the classpath?
> Make sure camel-jaxb and camel-core uses the same version.
>
You were correct. I added the following exclusion to my pom.xml and it
worked.
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-camel</artifactId>
<version>${drools.version}</version>
<exclusions>
<exclusion>
<artifactId>camel-jaxb</artifactId>
<groupId>org.apache.camel</groupId>
</exclusion>
--
View this message in context:
http://camel.465427.n5.nabble.com/Any-idea-why-this-simple-splitter-is-not-working-in-2-10-SNAPSHOT-tp5678336p5686641.html
Sent from the Camel - Users mailing list archive at Nabble.com.