Issue Details (XML | Word | Printable)

Key: MANTRUN-119
Type: Bug Bug
Status: Open Open
Priority: Blocker Blocker
Assignee: Unassigned
Reporter: René Zanner
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
Maven 2.x Antrun Plugin

copy task does not respect failonerror=false

Created: 22/Sep/09 03:39 AM   Updated: 23/Sep/09 04:35 AM
Component/s: None
Affects Version/s: 1.3
Fix Version/s: None

Time Tracking:
Not Specified

Environment:
Maven 2.2.1,
jRockit (Java 6)
Issue Links:
Related
 


 Description  « Hide

When defining a copy task, the antrun plugin propagates it's failure although "failonerror" is set to true: the maven build stops.

In my case I try to copy a file which does not exist in some maven build situations. The build should not fail but try to copy a different file instead. With antrun 1.2 it still works (the build continues with the next copy task), but with the current version the build fails.

<configuration>
<tasks>
<Unable to render embedded object: File (-- in single project builds, the file to be copied has a different name - reactor build with antrun 1.3 fails here, though failonerror is false) not found. -->
<copy file="${project.build.directory}/dependency/model.xml" tofile="${project.build.directory}/model.xml" overwrite="true" verbose="true" failonerror="false" />
<!-- in rector builds, the name of the file contains the correct maven type (xmi) and the version number -->
<copy file="${project.build.directory}/dependency/model-${project.version}.xmi" tofile="${project.build.directory}/model.xml" overwrite="true" verbose="true" failonerror="false" />
</tasks>
</configuration>



There are no comments yet on this issue.