I'm trying to use the maven-antrun-plugin to get ant to generate some code for me (wsdlc with WebLogic but this isn't particularly pertinent).
I've passed maven.compile.classpath to the plugin by doing:
in the pom.xml, but when I do:
Compile classpath: ${compile_classpath}
in the build.xml I'm getting:
Compile classpath: ${compile_classpath}
which suggests it hasn't been set.
I've tried adding:
to the pom by way of debug, this gives:
Compile classpath: ${maven.compile.classpath}
which suggests it's not set there either (though I'm not convinced this is the correct thing to do anyway).
Any idea appreciated.
Regards,
Nick