What are ant primitives?
In my build.xml I am using a statements like:
<fileset dir="${basedir}/lib">
<fileset dir="${src.test.dir}" includes="**/*.class" />
how does ant know that “src.test.dir” is same as ./test-java?
Where can I find the list of ant primitives?
It knows because someone has previously defined that variable/propery manually. Search your build file and see where the
src.test.dirproperty gets defined. It should be something like:By default, ant has only a limited set of properties as described here