The v2.12.1 Camel version is used for all camel components, however camel-jms
2.10.3 is used by activemq-camel component. This jar causes the classpath
issue as Christian mentioned in his relevant post.
I have updated my pom and it seems OK now with Camel v2.12.1.
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-camel</artifactId>
<version>5.8.0</version>
<exclusions>
<exclusion>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jms</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jms</artifactId>
<version>2.12.1</version>
</dependency>
Thanks
Nikos
--
View this message in context:
http://camel.465427.n5.nabble.com/Body-is-null-exception-when-producing-JMS-messages-from-a-Quartz-endpoint-tp5742072p5742082.html
Sent from the Camel - Users mailing list archive at Nabble.com.