TL;DR: To enable an Ant feature, is there a difference between on
, yes
, and true
?
I cannot find any documentation regarding this matter. We have some Ant build scripts that seem to randomly pick between: on
yes
and true
to enable various Ant JUnit features.
Example attributes: fork
and haltonerror
From http://ant.apache.org/manual/develop.html:
So
yes
,on
andtrue
are the same thing.