How to Resolve Apache Ant Copy and Include Issues – Ant Guide
Question: Why Copy in ant is not working if I am putting includes separately? Ant version: Apache Ant version 1.5.4 compiled on January 8 2005. Program 1 is not working and Program 2 is working. I guess both programs are correct.. Program1: <copy todir=”${Temp}/uaw/Uaw_compilescripts”> <fileset dir=”${SVNCheckout}/scripts/compilescripts” > <include name=”BuildSh,Compsh,vsamc,buildc.sh,script,compl2,main.sh,makefile,makepl1,script”/> </fileset> </copy> Program2: <copy todir=”${Temp}/uaw/Uaw_compilescripts”> <fileset … Read more