In Excalibur, we currently have a few tasks like this: <target name="build-subprojects-dist"> <!-- Sub projects which do not depend on any other excalibur sub projects. --> <ant dir="altrmi" target="dist"/> <ant dir="collections" target="dist"/>
<!-- ...... repeat for each project ...... --> <ant dir="tar" target="dist"/> <ant dir="zip" target="dist"/> </target> Is there any way in ANT where we can simply give it a fileset or dirset and have it act on that? Something like this would be killer: <ant target="dist"> <dirset dir="${basedir}"> <include name="*"/> <exclude name="template-product"/> </dirset> </ant> Is this, or will this be possible with ANT? "They that give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." - Benjamin Franklin -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>