Hi, I am writting my own plug-in and try to pass in the compile and/or runtime classpath of the build. A previous version was using a build in Ant-task using something like

<property name="compile_classpath" refid="maven.compile.classpath"/>

and it works. But where do I get the same information into my own plugin. I am expected to work something like

...

<configuration>

<cl>${maven.compile.classpath}</cl>

</configuration>
<goals>
<goal>buildStartBat</goal>
</goals>
</execution>
</executions>
</plugin>

...

but it does not work. No classpath is passed in the "cl" variable of the configuration. Where is the refid="maven.compile.classpath" pointing to ? There must be a property containing this information - or does the Ant-plugin create it ?

This costs me already some time which I never expected. Please give me some help.

Thanks, Rob.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to