Additional options for the macro are specified using the Ant arg element using the value attribute within the additionalArgs element. For example:
<'+getTask()+' ... >
<additionalArgs>
<arg value="--option"/>
</additionalArgs>
</'+getTask()+'>
Any argument that is required for an option, arg, should be added with a separate Ant arg element. For example:
<'+getTask()+' ... >
<additionalArgs>
<arg value="--option"/>
<arg value="optionArgument"/>
</additionalArgs>
</'+getTask()+'>