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
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
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
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