Hi,
I'm writing an Ant script and I like to call a macro multiple times using arguments from a list in a property file. The format of the property file is not important, it will be manually edited prior to Ant invocation. I'v been thinking about AntCall, SubAnt, RegExpMapper etc. but I'm simply not experienced enough in Ant to put it all together, any suggestions are wellcome!
E.g. property file:
list = "a/b/c,d/e/f,g/h/i"
Executed by Ant:
<myMacro A="a" B="b" C="c" \>
<myMacro A="d" B="e" C="f" \>
<myMacro A="g" B="h" C="i" \>
Thanks, Mats