> >How can I exclude the common package in my source tree and
> >then run my javancss.
> <path id="filtered.src.dir">
> <dirset dir="${src.dir}">
> - <exclude name="common"/>
> + <exclude name="common/"/>
> </dirset>
> </path>
I recommend using the longer form <exclude name="common/**" />, as
it's too easy to overlook the trailing slash next to the XML element
closing slash. --DD
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org
|