> > You probably need to specify a classloader on the > dependency - check > > the FAQ. > > Hmm. Could you be more specific? All that I could find about > classloaders > is: > "We hope to alleviate these problems with real ClassLoader > isolation using Classworlds." But I am still a beginner with > maven and currently I do not understand how Classworlds can help me. >
Sorry, I was a bit misleading. The XSLT question in the FAQ alludes to it, but the actuall documentation I was referring to is at the bottom of the developers guide :) Basically, try adding this to your saxon dependency: <properties> <classloader>maven</classloader> </properties> Alternatively, put saxon in your $CLASSPATH variable before starting - but that could lead to more problems. Location of XML parsers are the bane of the Java developers existence these days... Cheers, Brett
