Hi, Here is how I got the example camel-example-spring-xquery to work. 1. Open the pom.xml and add the saxon-he dependency:
<dependency> <groupId>net.sf.saxon</groupId> <artifactId>Saxon-HE</artifactId> <version>9.4</version> </dependency> 2. Exclude the dependency from camel-saxon <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-saxon</artifactId> <exclusions> <exclusion> <groupId>net.sf.saxon</groupId> <artifactId>saxon9he</artifactId> </exclusion> </exclusions> </dependency> :-) Thats it. mvn compile mvn camel:run And you're good to go. I hope these steps help some newbie like myself! :-) /Kojo -- View this message in context: http://camel.465427.n5.nabble.com/How-to-get-camel-saxon-working-in-camel-2-11-x-My-Solution-tp5738578.html Sent from the Camel - Users mailing list archive at Nabble.com.