How to accept argument values ββfor a given task into a list of (values) without rewriting the task for each argument value?
Example: I want to not rewrite the same task three times to repeat three different values ββ(value 1, value 2, value 3):
<exec executable="cmd"> <arg value="/c"/> <arg value="value 1"/> </exec> <exec executable="cmd"> <arg value="/c"/> <arg value="value 2"/> </exec> <exec executable="cmd"> <arg value="/c"/> <arg value="value 3"/> </exec>
thanks
source share