I have done the following:
1. downloaded the code
2. run mvn compile (all the dependencies downloaded except xfire - the plugin is missing from the site)
3. modified the plugin to be downloaded to the following:
Code:
<plugin>
<groupId>org.codehaus.xfire</groupId>
<artifactId>xfire-all</artifactId>
<configuration>
<package>
com.wrox.webservice.emailvalidation.client
</package>
<overwrtite>true</overwrtite>
<generateServerStubs>false</generateServerStubs>
<forceBare>false</forceBare>
<outputDirectory>
${project.build.directory}/generated-sources
</outputDirectory>
<wsdls>
<wsdl>
http://ws.xwebservices.com/XWebEmail...alidation.wsdl
</wsdl>
</wsdls>
</configuration>
</plugin>
I now get the following error:
Code:
[ERROR] FATAL ERROR
[INFO] ------------------------------------------------------------------------
[INFO] The PluginDescriptor for the plugin Plugin [org.codehaus.xfire:xfire-all] was not found.
[INFO] ------------------------------------------------------------------------
Is there a fix to this problem, I have not found one on the web yet.
Joe Gaber