Martin Gainty created MANTRUN-208:
-------------------------------------
Summary: 1.8 version maven-antrun-plugin doesnt work
Key: MANTRUN-208
URL: https://issues.apache.org/jira/browse/MANTRUN-208
Project: Maven Antrun Plugin
Issue Type: Bug
Environment: Maven home: C:\maven\maven333
Java version: 1.8.0_40, vendor: Oracle Corporation
Java home: C:\Java\jdk1.8\jre
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 7", version: "6.1", arch: "amd64", family: "dos"
Reporter: Martin Gainty
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<configuration>
<target>
<property name="compile_classpath" refid="maven.compile.classpath"/>
<property name="runtime_classpath" refid="maven.runtime.classpath"/>
<property name="test_classpath" refid="maven.test.classpath"/>
<property name="plugin_classpath" refid="maven.plugin.classpath"/>
<echo message="compile classpath: ${compile_classpath}"/>
<echo message="runtime classpath: ${runtime_classpath}"/>
<echo message="test classpath: ${test_classpath}"/>
<echo message="plugin classpath: ${plugin_classpath}"/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
mvn -e -X -o produces no output for echo statements
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)