I have a property called source-locations, and it contains a list of folders, separated by commas, where the source code can be found.
source-locations=src,other_src_dir,yet_another_dir
In one of my ant tasks, I use dirset as follows:
<dirset dir="${basedir}" includes="${source-locations}"/>
My problem is that in this case only the directories listed in the source-locations property will be part of dirset, and I also need all the subdirectories of these directories. How can i do this?
Any input is appreciated! Thanks!
source share