>From previous maven builds I used to override code-generator-plugin
dependencies to set the generator version :
example :
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
<version>1.2-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>axis</groupId>
<artifactId>axis</artifactId>
<version>${axis.version}</version>
</dependency>
Using maven 2.0.8, this doesn't seem to work anymore.
I don't know how to dump the plugin classpath. mvn -X shows :
[DEBUG] Configuring mojo '
org.codehaus.mojo:axistools-maven-plugin:1.2-SNAPSHOT:wsdl2java' -->
[DEBUG] (f) pluginArtifacts = [axis:axis-ant:jar:1.1:compile,
axis:axis:jar:1.4:runtime, commons-logging:commons-logging:jar:1.0.4:runtime,
commons-discovery:commons-discovery:jar:0.2:runtime,
plexus:plexus-utils:jar:1.0.1:runtime, org.codehaus.plexus:plex
us-utils:jar:1.1:runtime, wsdl4j:wsdl4j:jar:1.5.2:compile,
org.codehaus.plexus:plexus-compiler-api:jar:1.5.1:runtime,
axis:axis:jar:1.1:runtime, org.apache.maven:maven-core:jar:2.0:runtime]
Please note there is 2 axis:axis:jar in the list !!
Nico.