I am trying to follow a large ant buildfile that I have been given, and I am having trouble understanding the functionality of xmlproperty in this case. Consider this xml fi
When multiple elements have the same name, creates a property with comma-separated values:
${PREFIX.main.tagList.tag.file}
The result:
run:
[echo] file1,file2
To process the comma-separated values, consider using the
@{file}
The result:
run:
[echo] file1
[echo] file2