Messed up maven.dependency.classpath when using maven-antrun-plugin-1.1
-----------------------------------------------------------------------
Key: MANTRUN-38
URL: http://jira.codehaus.org/browse/MANTRUN-38
Project: Maven 2.x Antrun Plugin
Type: Bug
Versions: 1.1
Environment: suse10, maven-2.0.1, maven-antrun-plugin-1.1.
Reporter: Rohnny Moland (JIRA)
When running embedded ant tasks inside the pom, and trying to retrieve the
maven.dependency.classpath,
it is messed up. Works fine in the 1.0 version of the plugin, but not in 1.1.
How to reproduce:
In pom.xml include something like:
[..]
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>test-compile</id>
<phase>compile</phase>
<configuration>
<tasks>
<property name="mdc" refid="maven.dependency.classpath"/>
<echo>MDC: ${mdc}</echo>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
[..]
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]