How can I define a dirset in Ant, which includes two directories: the project's base directory, and a subdirectory "test"?
It looks like you can't specifically include the root directory of the dirset, using either "/", ".", or "". For example, this includes "./test", but not ".":
<dirset dir="." id="myDirs">
<include name="." />
<include name="test" />
</dirset>