Re: how to force recompile everything using javac task

2008-07-05 Thread David Weintraub
using "touch" java source before second . It works but it > changes the source code modified time which is not desirable. > > Regards, > > > > > "Raymond Berg (ALLETE)" <[EMAIL PROTECTED]> > 07/01/2008 07:22 PM > Please respond to > "Ant U

Re: how to force recompile everything using javac task

2008-07-03 Thread Geoffrey Mitchell
Andy Stevens wrote: 2008/7/2 <[EMAIL PROTECTED]>: 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

Re: how to force recompile everything using javac task

2008-07-02 Thread Andy Stevens
2008/7/2 <[EMAIL PROTECTED]>: > 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 an

RE: how to force recompile everything using javac task

2008-07-02 Thread Guo-ping . Zhang
ond . It works but it changes the source code modified time which is not desirable. Regards, "Raymond Berg (ALLETE)" <[EMAIL PROTECTED]> 07/01/2008 07:22 PM Please respond to "Ant Users List" To "Ant Users List" cc Subject RE: how to force recompile

RE: how to force recompile everything using javac task

2008-07-01 Thread Raymond Berg (ALLETE)
, July 01, 2008 2:06 AM To: user@ant.apache.org Subject: how to force recompile everything using javac task 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

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,