Thanks to all who watched the saga unfold. I have the answer. It seems that
either of these works:
<fileset id="files.war.dtapps"
dir="${build.web.dir}/dtapps"
excludes="**/*.java,**/*.class,**/WEB-INF/web.xml"/>
or
<fileset id="files.war.dtapps"
dir="${build.web.dir}/dtapps">
<exclude name="**/*.java"/>
<exclude name="**/*.class"/>
<exclude name="**/WEB-INF/web.xml"/>
</fileset>
but this doesn't.
<fileset id="files.war.dtapps"
dir="${build.web.dir}/dtapps">
<exclude name="**/*.java,**/*.class,**/WEB-INF/web.xml"/>
</fileset>
Just some syntacitcal confusion, though I must admit it seems a bit nitpicky.
-- Ian
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Ian Duggan [EMAIL PROTECTED] http://www.demandtec.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
DemandTec, Inc.
1 Circle Star Way Suite 200
San Carlos, CA 94070
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>