hi all!!!!
i am new to ant
if possible please help me

in the UPTODATE clause i've to use multiple source file names 
in fact i want to check timestamps of target file with that of multiple source files 
using UPTODATE clause and set a property
so can you tell me how to do that

src1 is c:\ant\bin
and src2 is c:\ant\bin\newdir
and i've written code like this 

 <uptodate property="xmlBuild.notRequired">
      
       
           <srcfiles dir= "${src1}" includes="one.java"/>         
           <mapper type="merge" to="${src}/clas/one.class"/>
 </uptodate>


if i want to include another java file two.java in another directory src2 in the 
sourcefiles how should i do it
so that i can check timestamps of both one.java and two.java with the class file in 
target

Regards,
Abhay.

Reply via email to