Is it possible in Ant to call the same target multiple times with different parameters?
My command looks like the following:
ant unittest -Dproject=\
You could add another target to invoke your unittest target twice, with different parameters, using the antcall task e.g.
Output:
test:
unittest:
[echo] project=proj1
unittest:
[echo] project=proj2
BUILD SUCCESSFUL
Total time: 0 seconds
Alternatively, you could change the unittest target to be a macrodef: