RE: Why is the java command not executing

2011-08-30 Thread Echlin, Robert
l Message- > From: VR Venugopal Rao [mailto:v...@cmcltd.com] > Sent: Monday, August 29, 2011 11:56 PM > To: 'Ant Users List' > Subject: RE: Why is the java command not executing > > Hi Robert, > Thanks for the clarification. > Does it mean that ant execution doe

Re: Why is the java command not executing

2011-08-29 Thread Parag Doke
gt; Sent: 29 August 2011 19:25 > To: Ant Users List > Subject: RE: Why is the java command not executing > > Hi Venu, > default target is archive > archive depends on compile, so compile is run. > compile depends on init, so init is run. > > That's all that is happeni

RE: Why is the java command not executing

2011-08-29 Thread VR Venugopal Rao
on archive --clean depends on execute Regards, Venu -Original Message- From: Echlin, Robert [mailto:robert.ech...@windriver.com] Sent: 29 August 2011 19:25 To: Ant Users List Subject: RE: Why is the java command not executing Hi Venu, default target is archive archive depends on

RE: Why is the java command not executing

2011-08-29 Thread Echlin, Robert
Hi Venu, default target is archive archive depends on compile, so compile is run. compile depends on init, so init is run. That's all that is happening, so of course the execute doesn't happen.. Make archive depends="compile, execute". Then it will do - init - compile - execute - archive Rob