I have the following dependency in my pom file:-
<dependency>
<groupId>org.jvnet.ws.wadl</groupId>
<artifactId>wadl-core</artifactId>
<version>1.1-SNAPSHOT</version>
</dependency>
the jar file exists on the system and the dependency can be resolved. but when the code is run it fails on java.lang.ClassNotFoundException: org.jvnet.ws.wadl.util.DSDispatcher. DSDispatcher exists in the jar file and in the correct package. Can anyone suggest what the issue might be? I've tried adding all the dependencies from wadl-core pom to my pom, that has not helped and i've tried the various scopes on my dependency.
Thanks!