I configured the axistools-maven-plugin as follows:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
<version>1.4</version>
<configuration>
<wsdlDirectory>/src/main/resources</wsdlDirectory>
<wsdlFiles>
<wsdlFile>adjustment.wsdl</wsdlFile>
</wsdlFiles>
<keep>true</keep>
<allElements>true</allElements>
<outputDirectory>/src/main/java</outputDirectory>
<subPackageByFileName>true</subPackageByFileName>
<useEmitter>true</useEmitter>
<wsdlVersion>2</wsdlVersion>
</configuration>
<executions>
<execution>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
but my wsdl files are not being referred properly. Is the configuration correct?
I am getting the following info msg always
[INFO] Nothing to generate. All WSDL files are up to date.
axistools-maven-plugin
issues an[INFO] Skipping up to date wsdl: ...
for files not found instead of alerting about incorrect paths. Check your paths as suggested in the answers, and correct thewsdlDirectory
tosourceDirectory
, as per MaDa post. – Bindweed