RE: javac ant task

2004-09-16 Thread Satish Jeejula
Mike, Thanks. Having ext in my package structure was causing the problem .. thanks for the help. Satish -Original Message- From: Murray, Mike [mailto:[EMAIL PROTECTED] Sent: Thursday, September 16, 2004 4:15 PM To: Ant Users List Subject: RE: javac ant task It is probably because ext

RE: javac ant task

2004-09-16 Thread Charles Hudak
DOH! I always miss the obvious solution... ;-) > -Original Message- > From: Murray, Mike [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 16, 2004 2:15 PM > To: Ant Users List > Subject: RE: javac ant task > > > It is probably because ext is part o

RE: javac ant task

2004-09-16 Thread Charles Hudak
--- > From: Satish Jeejula [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 16, 2004 2:05 PM > To: [EMAIL PROTECTED] > Subject: RE: javac ant task > > > Charles, > > I have changed the javac task to use nested src elements. But > the problem still persists. I

RE: javac ant task

2004-09-16 Thread Murray, Mike
CTED] Sent: Thursday, September 16, 2004 4:05 PM To: [EMAIL PROTECTED] Subject: RE: javac ant task Charles, I have changed the javac task to use nested src elements. But the problem still persists. It compiles all the java files under ${wt_home}/src/ext every time even though no file has been cha

RE: javac ant task

2004-09-16 Thread Satish Jeejula
Hudak [mailto:[EMAIL PROTECTED] Sent: Thursday, September 16, 2004 3:08 PM To: Ant Users List Subject: RE: javac ant task Since you have more than one source dir, don't use the javac attribute but use nested src elements: Most of this stuff is discussed in the Ant manual. Yo