Call another target within the same build-file optionally specifying some properties (param's in this context)
| Attribute | Description | Required |
| target | The target to execute. | Yes |
Specifies the properties to set before running the specified target. See property for usage guidelines.
<target name="default">
<antcall target="doSomethingElse">
<param name="param1" value="value"/>
</antcall>
</target>
<target name="doSomethingElse">
<echo message="param1=${param1}"/>
</target>
Will run the target 'doSomethingElse' and echo 'param1=value'.
Copyright © 2000,2001 Apache Software Foundation. All rights Reserved.