RE: how to force recompile everything using javac task

2008-07-02 Thread Guo-ping . Zhang
Hi Raymond, Thanks for your reply. Actually I have two task in my build.xml. First task would compile everything from src dir "Adir" and jar it. Second task will compile a few java file from "Bdir" which could override some of first ones and create another jar again. If I put a delete task b

how to force recompile everything using javac task

2008-07-01 Thread Guo-ping . Zhang
Hi, how to force recompile everything using javac task? Javac task always compare modify time with target classes. I want to recompile java source no matter target classes exists and newer. Is there any options to achieve this? Thanks,