I am trying to use the springws-maven-plugin to generate my WSDLs at build
time and I'm getting errors.
My pom.xml includes this plugin config....
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>springws-maven-plugin</artifactId>
<version>1.0-alpha-1</version>
<executions>
<execution>
<goals>
<goal>springws</goal>
</goals>
</execution>
</executions>
<configuration>
<contextLocations>
<contextLocation>WEB-INF/hyper9-servlet.xml</contextLocation>
</contextLocations>
</configuration>
</plugin>
But no matter what I put for contextLocation I get the following error....
Caused by: java.io.FileNotFoundException: class path resource
[WEB-INF/hyper9-servlet.xml] cannot be opened because it does not exist
I've tried prepending with "classpath:", putting in the full path, etc. Any
help would be greatly appreciated.
Thanks!
Ryan