You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by "Vishnumalakala, Santa" <Sa...@adp.com> on 2008/02/13 09:50:02 UTC

Only one ant command is executing in batch file and not executing other commands after ant in batch file

Hi,

	This is Santa. I am using ANT for my development.

	Problem is :: Only one ant command is executing in batch file
and not executing other commands after ant command in batch file

	I am trying to write batch file to execute Ant tasks.But after
executing one ant command control is going to prompt rather than
executing other commands in batch file.Could you please help me to
execute all tasks in batch file. This is happening only for ant command
not any other commands in batch file.

	My build.bat:

	set ANT_HOME=D:\Program
Files\Ant\apache-ant-1.6.1-bin\apache-ant-1.6.1
	set
PATH=%PATH%;%ANT_HOME%\bin;D:/vsanta/App(D)/GSNL/GSNLProject/GSNL-UI/bui
ld;

	 ant -l test1.log -buildfile Test1\build\build.xml 
	 ant -l test2.log -buildfile Test2\build\build.xml 

	Running build.bat...after executing first ant command i.e.
build.xml in Test1 folder(My build is success)
	control is going to command  prompt rather than executing
another ant command.	


Thanks,
Santa.

-----------------------------------------
This message and any attachments are intended only for the use of
the addressee and may contain information that is privileged and
confidential. If the reader of the message is not the intended
recipient or an authorized representative of the intended
recipient, you are hereby notified that any dissemination of this
communication is strictly prohibited. If you have received this
communication in error, notify the sender immediately by return
email and delete the message and any attachments from your system.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Only one ant command is executing in batch file and not executing other commands after ant in batch file

Posted by David Weintraub <qa...@gmail.com>.
The easiest thing is to create another build.xml which will do
<antcall> to the two other build.xml files. That will allow you to
create a single email.

On Thu, Feb 14, 2008 at 7:07 AM, Vishnumalakala, Santa
<Sa...@adp.com> wrote:
> This will send two mails separately.
>  But I need to send only one mail with these two  build outputs.
>
>  Thanks,
>  Santa.
>
>
>  -----Original Message-----
>  From: sramhu@gmail.com [mailto:sramhu@gmail.com] On Behalf Of Ramu Sethu
>
>
> Sent: Thursday, February 14, 2008 5:24 PM
>  To: Ant Users List
>  Subject: Re: Only one ant command is executing in batch file and not executing other commands after ant in batch file
>
>
>  call ant -f build1.xml -logger org.apache.tools.ant.listener.MailLogger
>  call ant -f build2.xml -logger org.apache.tools.ant.listener.MailLogger
>
>  see to that u set the required properties mentioned here http://ant.apache.org/manual/listeners.html#MailLogger
>
>  Hope this helps you
>
>  On Thu, Feb 14, 2008 at 12:48 PM, Vishnumalakala, Santa < Santa_Vishnumalakala@adp.com> wrote:
>
>  > Here I need to send two build outputs as a email.
>  >
>  > Below I am executing two ant commands.
>  >
>  > call ant -f build1.xml > build.log
>  > call ant -f build2.xml >> build.log
>  >
>  > Above two outputs I need to send as email.
>  > One thing is I am writing another build.xml with mail task sending
>  > build.log as a message.
>  >
>  > Just I wanted to know is there any approach to send that output as a
>  > email without writing another build.xml. Your inputs are required for
>  > me. Thanks for the cooperation.
>  >
>  > Santa.
>  >
>  >
>  >
>  > -----Original Message-----
>  > From: sramhu@gmail.com [mailto:sramhu@gmail.com] On Behalf Of Ramu
>  > Sethu
>  > Sent: Thursday, February 14, 2008 12:37 PM
>  > To: Ant Users List
>  > Subject: Re: Only one ant command is executing in batch file and not
>  > executing other commands after ant in batch file
>  >
>  >
>  > If you use mail logger, logger itself stores sends the entire console
>  > output. So you don have to redirect the logs.
>  >
>  > On Feb 13, 2008 4:11 PM, Vishnumalakala, Santa <
>  > Santa_Vishnumalakala@adp.com>
>  > wrote:
>  >
>  > > Can I send these output as email using mail logger
>  > >
>  > > Santa.
>  > >
>  > > -----Original Message-----
>  > > From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de]
>  > > Sent: Wednesday, February 13, 2008 3:29 PM
>  > > To: user@ant.apache.org
>  > > Subject: AW: Only one ant command is executing in batch file and not
>  > > executing other commands after ant in batch file
>  > >
>  > >
>  > > call ant -f build1.xml > build.log
>  > > call ant -f build2.xml >> build.log
>  > >
>  > > >  redirects to a file
>  > > >> appends to a file
>  > >
>  > >
>  > > Jan
>  > >
>  > >
>  > > > -----Ursprüngliche Nachricht-----
>  > > > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
>  > > > Gesendet: Mittwoch, 13. Februar 2008 10:49
>  > > > An: Ant Users List
>  > > > Betreff: RE: Only one ant command is executing in batch file and
>  > > > not executing other commands after ant in batch file
>  > > >
>  > > > Thank you. It is solving my purpose.
>  > > > And one more problem is can I take standard output of two build
>  > > > files in one file?? Why because if I use below command
>  > > >    ant -l test.log -buildfile Test1\build\build.xml  test.log is
>  > > > always creating the new. It is not updating the existing.
>  > > >       Thanks for your cooperation.
>  > > > Thanks,
>  > > > Santa.
>  > > >
>  > > >
>  > > > -----Original Message-----
>  > > > From: Jan.Materne@rzf.fin-nrw.de
>  > > > [mailto:Jan.Materne@rzf.fin-nrw.de]
>  > > > Sent: Wednesday, February 13, 2008 2:28 PM
>  > > > To: user@ant.apache.org
>  > > > Subject: AW: Only one ant command is executing in batch file and not
>  > > > executing other commands after ant in batch file
>  > > >
>  > > >
>  > > > use "call ant" instead of "ant".
>  > > >
>  > > > "ant" is a batchfile and if that is finished the called batch is
>  > > > terminated. with "call" your batch will proceed.
>  > > >
>  > > > its a windows behaviour and you'll find that in every batch ....
>  > > >
>  > > >
>  > > > Jan
>  > > >
>  > > > > -----Ursprüngliche Nachricht-----
>  > > > > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
>  > > > > Gesendet: Mittwoch, 13. Februar 2008 09:50
>  > > > > An: Ant Users List
>  > > > > Betreff: Only one ant command is executing in batch file and not
>  > > > > executing other commands after ant in batch file
>  > > > >
>  > > > >
>  > > > > Hi,
>  > > > >
>  > > > >     This is Santa. I am using ANT for my development.
>  > > > >
>  > > > >     Problem is :: Only one ant command is executing in
>  > > > batch file and not
>  > > > > executing other commands after ant command in batch file
>  > > > >
>  > > > >     I am trying to write batch file to execute Ant tasks.But
>  > > > > after executing one ant command control is going to prompt
>  > > > > rather than executing other commands in batch file.Could you
>  > > > > please help me to execute all tasks in batch file. This is
>  > > > > happening only for ant command not any other commands in batch
>  > > > > file.
>  > > > >
>  > > > >     My build.bat:
>  > > > >
>  > > > >     set ANT_HOME=D:\Program
>  > > > > Files\Ant\apache-ant-1.6.1-bin\apache-ant-1.6.1
>  > > > >     set
>  > > > PATH=%PATH%;%ANT_HOME%\bin;D:/vsanta/App(D)/GSNL/GSNLProject/G
>  > > > > SNL-UI/bui
>  > > > > ld;
>  > > > >
>  > > > >      ant -l test1.log -buildfile Test1\build\build.xml
>  > > > >      ant -l test2.log -buildfile Test2\build\build.xml
>  > > > >
>  > > > >     Running build.bat...after executing first ant command
>  > > > i.e. build.xml
>  > > > > in Test1 folder(My build is success)
>  > > > >     control is going to command  prompt rather than executing
>  > > > > another ant command.
>  > > > >
>  > > > >
>  > > > > Thanks,
>  > > > > Santa.
>  > > > >
>  > > > > -----------------------------------------
>  > > > > This message and any attachments are intended only for the
>  > > > use of the
>  > > > > addressee and may contain information that is privileged and
>  > > > > confidential. If the reader of the message is not the intended
>  > > > > recipient or an authorized representative of the intended
>  > > > recipient,
>  > > > > you are hereby notified that any dissemination of this
>  > > > communication
>  > > > > is strictly prohibited. If you have received this communication
>  > > > > in error, notify the sender immediately by return email and
>  > > > > delete the message and any attachments from your system.
>  > > > >
>  > > > >
>  > > > >
>  > > > ------------------------------------------------------------------
>  > > > --
>  > > > -
>  > > > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For
>  > > > > additional commands, e-mail: user-help@ant.apache.org
>  > > > >
>  > > > >
>  > > >
>  > > > ------------------------------------------------------------------
>  > > > --
>  > > > -
>  > > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>  > > > For additional commands, e-mail: user-help@ant.apache.org
>  > > >
>  > > >
>  > > >
>  > > > ------------------------------------------------------------------
>  > > > --
>  > > > -
>  > > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>  > > > For additional commands, e-mail: user-help@ant.apache.org
>  > > >
>  > > >
>  > >
>  > > --------------------------------------------------------------------
>  > > -
>  > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>  > > For additional commands, e-mail: user-help@ant.apache.org
>  > >
>  > >
>  > >
>  > > --------------------------------------------------------------------
>  > > -
>  > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>  > > For additional commands, e-mail: user-help@ant.apache.org
>  > >
>  > >
>  >
>  >
>  > --
>  > Thank you
>  > Ramu S
>  >
>  >  If A is success in life, then A equals x plus y plus z. Work is x; y
>  > is play; and z is keeping your mouth shut.
>  > - Albert Einstein
>  >
>  >
>  > ---------------------------------------------------------------------
>  > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>  > For additional commands, e-mail: user-help@ant.apache.org
>  >
>  >
>
>
>  --
>  Thank you
>  Ramu S
>
>  If A is success in life, then A equals x plus y plus z. Work is x; y is play; and z is keeping your mouth shut.
>  - Albert Einstein
>
>
>  ---------------------------------------------------------------------
>
>
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>  For additional commands, e-mail: user-help@ant.apache.org
>
>



-- 
--
David Weintraub
qazwart@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Only one ant command is executing in batch file and not executing other commands after ant in batch file

Posted by Ramu Sethu <sr...@yahoo.co.in>.
The above example sends two mail.

If u want the both the results in a single mail, i think u should go for
another build.....:-)

On Thu, Feb 14, 2008 at 5:24 PM, Ramu Sethu <sr...@yahoo.co.in> wrote:

>
> call ant -f build1.xml -logger org.apache.tools.ant.listener.MailLogger
> call ant -f build2.xml -logger org.apache.tools.ant.listener.MailLogger
>
> see to that u set the required properties mentioned here
> http://ant.apache.org/manual/listeners.html#MailLogger
>
> Hope this helps you
>
>
> On Thu, Feb 14, 2008 at 12:48 PM, Vishnumalakala, Santa <
> Santa_Vishnumalakala@adp.com> wrote:
>
> > Here I need to send two build outputs as a email.
> >
> > Below I am executing two ant commands.
> >
> > call ant -f build1.xml > build.log
> > call ant -f build2.xml >> build.log
> >
> > Above two outputs I need to send as email.
> > One thing is I am writing another build.xml with mail task sending
> > build.log as a message.
> >
> > Just I wanted to know is there any approach to send that output as a
> > email without writing another build.xml.
> > Your inputs are required for me. Thanks for the cooperation.
> >
> > Santa.
> >
> >
> >
> > -----Original Message-----
> > From: sramhu@gmail.com [mailto:sramhu@gmail.com] On Behalf Of Ramu Sethu
> > Sent: Thursday, February 14, 2008 12:37 PM
> > To: Ant Users List
> > Subject: Re: Only one ant command is executing in batch file and not
> > executing other commands after ant in batch file
> >
> >
> > If you use mail logger, logger itself stores sends the entire console
> > output. So you don have to redirect the logs.
> >
> > On Feb 13, 2008 4:11 PM, Vishnumalakala, Santa <
> > Santa_Vishnumalakala@adp.com>
> > wrote:
> >
> > > Can I send these output as email using mail logger
> > >
> > > Santa.
> > >
> > > -----Original Message-----
> > > From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de]
> > > Sent: Wednesday, February 13, 2008 3:29 PM
> > > To: user@ant.apache.org
> > > Subject: AW: Only one ant command is executing in batch file and not
> > > executing other commands after ant in batch file
> > >
> > >
> > > call ant -f build1.xml > build.log
> > > call ant -f build2.xml >> build.log
> > >
> > > >  redirects to a file
> > > >> appends to a file
> > >
> > >
> > > Jan
> > >
> > >
> > > > -----Ursprüngliche Nachricht-----
> > > > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> > > > Gesendet: Mittwoch, 13. Februar 2008 10:49
> > > > An: Ant Users List
> > > > Betreff: RE: Only one ant command is executing in batch file and not
> > > > executing other commands after ant in batch file
> > > >
> > > > Thank you. It is solving my purpose.
> > > > And one more problem is can I take standard output of two build
> > > > files in one file?? Why because if I use below command
> > > >    ant -l test.log -buildfile Test1\build\build.xml
> > > >  test.log is always creating the new. It is not updating the
> > existing.
> > > >       Thanks for your cooperation.
> > > > Thanks,
> > > > Santa.
> > > >
> > > >
> > > > -----Original Message-----
> > > > From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de]
> > > > Sent: Wednesday, February 13, 2008 2:28 PM
> > > > To: user@ant.apache.org
> > > > Subject: AW: Only one ant command is executing in batch file and not
> > > > executing other commands after ant in batch file
> > > >
> > > >
> > > > use "call ant" instead of "ant".
> > > >
> > > > "ant" is a batchfile and if that is finished the called batch is
> > > > terminated. with "call" your batch will proceed.
> > > >
> > > > its a windows behaviour and you'll find that in every batch ....
> > > >
> > > >
> > > > Jan
> > > >
> > > > > -----Ursprüngliche Nachricht-----
> > > > > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> > > > > Gesendet: Mittwoch, 13. Februar 2008 09:50
> > > > > An: Ant Users List
> > > > > Betreff: Only one ant command is executing in batch file and not
> > > > > executing other commands after ant in batch file
> > > > >
> > > > >
> > > > > Hi,
> > > > >
> > > > >     This is Santa. I am using ANT for my development.
> > > > >
> > > > >     Problem is :: Only one ant command is executing in
> > > > batch file and not
> > > > > executing other commands after ant command in batch file
> > > > >
> > > > >     I am trying to write batch file to execute Ant tasks.But after
> > > > > executing one ant command control is going to prompt rather than
> > > > > executing other commands in batch file.Could you please help me to
> > > > > execute all tasks in batch file. This is happening only for ant
> > > > > command not any other commands in batch file.
> > > > >
> > > > >     My build.bat:
> > > > >
> > > > >     set ANT_HOME=D:\Program
> > > > > Files\Ant\apache-ant-1.6.1-bin\apache-ant-1.6.1
> > > > >     set
> > > > PATH=%PATH%;%ANT_HOME%\bin;D:/vsanta/App(D)/GSNL/GSNLProject/G
> > > > > SNL-UI/bui
> > > > > ld;
> > > > >
> > > > >      ant -l test1.log -buildfile Test1\build\build.xml
> > > > >      ant -l test2.log -buildfile Test2\build\build.xml
> > > > >
> > > > >     Running build.bat...after executing first ant command
> > > > i.e. build.xml
> > > > > in Test1 folder(My build is success)
> > > > >     control is going to command  prompt rather than executing
> > > > > another ant command.
> > > > >
> > > > >
> > > > > Thanks,
> > > > > Santa.
> > > > >
> > > > > -----------------------------------------
> > > > > This message and any attachments are intended only for the
> > > > use of the
> > > > > addressee and may contain information that is privileged and
> > > > > confidential. If the reader of the message is not the intended
> > > > > recipient or an authorized representative of the intended
> > > > recipient,
> > > > > you are hereby notified that any dissemination of this
> > > > communication
> > > > > is strictly prohibited. If you have received this communication in
> > > > > error, notify the sender immediately by return email and delete
> > > > > the message and any attachments from your system.
> > > > >
> > > > >
> > > > >
> > > > --------------------------------------------------------------------
> > > > -
> > > > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For
> > > > > additional commands, e-mail: user-help@ant.apache.org
> > > > >
> > > > >
> > > >
> > > > --------------------------------------------------------------------
> > > > -
> > > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > > > For additional commands, e-mail: user-help@ant.apache.org
> > > >
> > > >
> > > >
> > > > --------------------------------------------------------------------
> > > > -
> > > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > > > For additional commands, e-mail: user-help@ant.apache.org
> > > >
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > > For additional commands, e-mail: user-help@ant.apache.org
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > > For additional commands, e-mail: user-help@ant.apache.org
> > >
> > >
> >
> >
> > --
> > Thank you
> > Ramu S
> >
> >  If A is success in life, then A equals x plus y plus z. Work is x; y is
> > play; and z is keeping your mouth shut.
> > - Albert Einstein
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> >
> >
>
>
> --
> Thank you
> Ramu S
>
> If A is success in life, then A equals x plus y plus z. Work is x; y is
> play; and z is keeping your mouth shut.
> - Albert Einstein
>



-- 
Thank you
Ramu S

If A is success in life, then A equals x plus y plus z. Work is x; y is
play; and z is keeping your mouth shut.
- Albert Einstein

RE: Only one ant command is executing in batch file and not executing other commands after ant in batch file

Posted by "Vishnumalakala, Santa" <Sa...@adp.com>.
This will send two mails separately. 
But I need to send only one mail with these two  build outputs.

Thanks,
Santa.

-----Original Message-----
From: sramhu@gmail.com [mailto:sramhu@gmail.com] On Behalf Of Ramu Sethu
Sent: Thursday, February 14, 2008 5:24 PM
To: Ant Users List
Subject: Re: Only one ant command is executing in batch file and not executing other commands after ant in batch file


call ant -f build1.xml -logger org.apache.tools.ant.listener.MailLogger
call ant -f build2.xml -logger org.apache.tools.ant.listener.MailLogger

see to that u set the required properties mentioned here http://ant.apache.org/manual/listeners.html#MailLogger

Hope this helps you

On Thu, Feb 14, 2008 at 12:48 PM, Vishnumalakala, Santa < Santa_Vishnumalakala@adp.com> wrote:

> Here I need to send two build outputs as a email.
>
> Below I am executing two ant commands.
>
> call ant -f build1.xml > build.log
> call ant -f build2.xml >> build.log
>
> Above two outputs I need to send as email.
> One thing is I am writing another build.xml with mail task sending 
> build.log as a message.
>
> Just I wanted to know is there any approach to send that output as a 
> email without writing another build.xml. Your inputs are required for 
> me. Thanks for the cooperation.
>
> Santa.
>
>
>
> -----Original Message-----
> From: sramhu@gmail.com [mailto:sramhu@gmail.com] On Behalf Of Ramu 
> Sethu
> Sent: Thursday, February 14, 2008 12:37 PM
> To: Ant Users List
> Subject: Re: Only one ant command is executing in batch file and not
> executing other commands after ant in batch file
>
>
> If you use mail logger, logger itself stores sends the entire console 
> output. So you don have to redirect the logs.
>
> On Feb 13, 2008 4:11 PM, Vishnumalakala, Santa < 
> Santa_Vishnumalakala@adp.com>
> wrote:
>
> > Can I send these output as email using mail logger
> >
> > Santa.
> >
> > -----Original Message-----
> > From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de]
> > Sent: Wednesday, February 13, 2008 3:29 PM
> > To: user@ant.apache.org
> > Subject: AW: Only one ant command is executing in batch file and not 
> > executing other commands after ant in batch file
> >
> >
> > call ant -f build1.xml > build.log
> > call ant -f build2.xml >> build.log
> >
> > >  redirects to a file
> > >> appends to a file
> >
> >
> > Jan
> >
> >
> > > -----Ursprüngliche Nachricht-----
> > > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> > > Gesendet: Mittwoch, 13. Februar 2008 10:49
> > > An: Ant Users List
> > > Betreff: RE: Only one ant command is executing in batch file and 
> > > not executing other commands after ant in batch file
> > >
> > > Thank you. It is solving my purpose.
> > > And one more problem is can I take standard output of two build 
> > > files in one file?? Why because if I use below command
> > >    ant -l test.log -buildfile Test1\build\build.xml  test.log is 
> > > always creating the new. It is not updating the existing.
> > >       Thanks for your cooperation.
> > > Thanks,
> > > Santa.
> > >
> > >
> > > -----Original Message-----
> > > From: Jan.Materne@rzf.fin-nrw.de 
> > > [mailto:Jan.Materne@rzf.fin-nrw.de]
> > > Sent: Wednesday, February 13, 2008 2:28 PM
> > > To: user@ant.apache.org
> > > Subject: AW: Only one ant command is executing in batch file and not
> > > executing other commands after ant in batch file
> > >
> > >
> > > use "call ant" instead of "ant".
> > >
> > > "ant" is a batchfile and if that is finished the called batch is 
> > > terminated. with "call" your batch will proceed.
> > >
> > > its a windows behaviour and you'll find that in every batch ....
> > >
> > >
> > > Jan
> > >
> > > > -----Ursprüngliche Nachricht-----
> > > > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> > > > Gesendet: Mittwoch, 13. Februar 2008 09:50
> > > > An: Ant Users List
> > > > Betreff: Only one ant command is executing in batch file and not 
> > > > executing other commands after ant in batch file
> > > >
> > > >
> > > > Hi,
> > > >
> > > >     This is Santa. I am using ANT for my development.
> > > >
> > > >     Problem is :: Only one ant command is executing in
> > > batch file and not
> > > > executing other commands after ant command in batch file
> > > >
> > > >     I am trying to write batch file to execute Ant tasks.But 
> > > > after executing one ant command control is going to prompt 
> > > > rather than executing other commands in batch file.Could you 
> > > > please help me to execute all tasks in batch file. This is 
> > > > happening only for ant command not any other commands in batch 
> > > > file.
> > > >
> > > >     My build.bat:
> > > >
> > > >     set ANT_HOME=D:\Program 
> > > > Files\Ant\apache-ant-1.6.1-bin\apache-ant-1.6.1
> > > >     set
> > > PATH=%PATH%;%ANT_HOME%\bin;D:/vsanta/App(D)/GSNL/GSNLProject/G
> > > > SNL-UI/bui
> > > > ld;
> > > >
> > > >      ant -l test1.log -buildfile Test1\build\build.xml
> > > >      ant -l test2.log -buildfile Test2\build\build.xml
> > > >
> > > >     Running build.bat...after executing first ant command
> > > i.e. build.xml
> > > > in Test1 folder(My build is success)
> > > >     control is going to command  prompt rather than executing 
> > > > another ant command.
> > > >
> > > >
> > > > Thanks,
> > > > Santa.
> > > >
> > > > -----------------------------------------
> > > > This message and any attachments are intended only for the
> > > use of the
> > > > addressee and may contain information that is privileged and 
> > > > confidential. If the reader of the message is not the intended 
> > > > recipient or an authorized representative of the intended
> > > recipient,
> > > > you are hereby notified that any dissemination of this
> > > communication
> > > > is strictly prohibited. If you have received this communication 
> > > > in error, notify the sender immediately by return email and 
> > > > delete the message and any attachments from your system.
> > > >
> > > >
> > > >
> > > ------------------------------------------------------------------
> > > --
> > > -
> > > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For 
> > > > additional commands, e-mail: user-help@ant.apache.org
> > > >
> > > >
> > >
> > > ------------------------------------------------------------------
> > > --
> > > -
> > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > > For additional commands, e-mail: user-help@ant.apache.org
> > >
> > >
> > >
> > > ------------------------------------------------------------------
> > > --
> > > -
> > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > > For additional commands, e-mail: user-help@ant.apache.org
> > >
> > >
> >
> > --------------------------------------------------------------------
> > -
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> >
> >
> >
> > --------------------------------------------------------------------
> > -
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> >
> >
>
>
> --
> Thank you
> Ramu S
>
>  If A is success in life, then A equals x plus y plus z. Work is x; y 
> is play; and z is keeping your mouth shut.
> - Albert Einstein
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
>
>


-- 
Thank you
Ramu S

If A is success in life, then A equals x plus y plus z. Work is x; y is play; and z is keeping your mouth shut.
- Albert Einstein


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Only one ant command is executing in batch file and not executing other commands after ant in batch file

Posted by Ramu Sethu <sr...@yahoo.co.in>.
call ant -f build1.xml -logger org.apache.tools.ant.listener.MailLogger
call ant -f build2.xml -logger org.apache.tools.ant.listener.MailLogger

see to that u set the required properties mentioned here
http://ant.apache.org/manual/listeners.html#MailLogger

Hope this helps you

On Thu, Feb 14, 2008 at 12:48 PM, Vishnumalakala, Santa <
Santa_Vishnumalakala@adp.com> wrote:

> Here I need to send two build outputs as a email.
>
> Below I am executing two ant commands.
>
> call ant -f build1.xml > build.log
> call ant -f build2.xml >> build.log
>
> Above two outputs I need to send as email.
> One thing is I am writing another build.xml with mail task sending
> build.log as a message.
>
> Just I wanted to know is there any approach to send that output as a email
> without writing another build.xml.
> Your inputs are required for me. Thanks for the cooperation.
>
> Santa.
>
>
>
> -----Original Message-----
> From: sramhu@gmail.com [mailto:sramhu@gmail.com] On Behalf Of Ramu Sethu
> Sent: Thursday, February 14, 2008 12:37 PM
> To: Ant Users List
> Subject: Re: Only one ant command is executing in batch file and not
> executing other commands after ant in batch file
>
>
> If you use mail logger, logger itself stores sends the entire console
> output. So you don have to redirect the logs.
>
> On Feb 13, 2008 4:11 PM, Vishnumalakala, Santa <
> Santa_Vishnumalakala@adp.com>
> wrote:
>
> > Can I send these output as email using mail logger
> >
> > Santa.
> >
> > -----Original Message-----
> > From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de]
> > Sent: Wednesday, February 13, 2008 3:29 PM
> > To: user@ant.apache.org
> > Subject: AW: Only one ant command is executing in batch file and not
> > executing other commands after ant in batch file
> >
> >
> > call ant -f build1.xml > build.log
> > call ant -f build2.xml >> build.log
> >
> > >  redirects to a file
> > >> appends to a file
> >
> >
> > Jan
> >
> >
> > > -----Ursprüngliche Nachricht-----
> > > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> > > Gesendet: Mittwoch, 13. Februar 2008 10:49
> > > An: Ant Users List
> > > Betreff: RE: Only one ant command is executing in batch file and not
> > > executing other commands after ant in batch file
> > >
> > > Thank you. It is solving my purpose.
> > > And one more problem is can I take standard output of two build
> > > files in one file?? Why because if I use below command
> > >    ant -l test.log -buildfile Test1\build\build.xml
> > >  test.log is always creating the new. It is not updating the existing.
> > >       Thanks for your cooperation.
> > > Thanks,
> > > Santa.
> > >
> > >
> > > -----Original Message-----
> > > From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de]
> > > Sent: Wednesday, February 13, 2008 2:28 PM
> > > To: user@ant.apache.org
> > > Subject: AW: Only one ant command is executing in batch file and not
> > > executing other commands after ant in batch file
> > >
> > >
> > > use "call ant" instead of "ant".
> > >
> > > "ant" is a batchfile and if that is finished the called batch is
> > > terminated. with "call" your batch will proceed.
> > >
> > > its a windows behaviour and you'll find that in every batch ....
> > >
> > >
> > > Jan
> > >
> > > > -----Ursprüngliche Nachricht-----
> > > > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> > > > Gesendet: Mittwoch, 13. Februar 2008 09:50
> > > > An: Ant Users List
> > > > Betreff: Only one ant command is executing in batch file and not
> > > > executing other commands after ant in batch file
> > > >
> > > >
> > > > Hi,
> > > >
> > > >     This is Santa. I am using ANT for my development.
> > > >
> > > >     Problem is :: Only one ant command is executing in
> > > batch file and not
> > > > executing other commands after ant command in batch file
> > > >
> > > >     I am trying to write batch file to execute Ant tasks.But after
> > > > executing one ant command control is going to prompt rather than
> > > > executing other commands in batch file.Could you please help me to
> > > > execute all tasks in batch file. This is happening only for ant
> > > > command not any other commands in batch file.
> > > >
> > > >     My build.bat:
> > > >
> > > >     set ANT_HOME=D:\Program
> > > > Files\Ant\apache-ant-1.6.1-bin\apache-ant-1.6.1
> > > >     set
> > > PATH=%PATH%;%ANT_HOME%\bin;D:/vsanta/App(D)/GSNL/GSNLProject/G
> > > > SNL-UI/bui
> > > > ld;
> > > >
> > > >      ant -l test1.log -buildfile Test1\build\build.xml
> > > >      ant -l test2.log -buildfile Test2\build\build.xml
> > > >
> > > >     Running build.bat...after executing first ant command
> > > i.e. build.xml
> > > > in Test1 folder(My build is success)
> > > >     control is going to command  prompt rather than executing
> > > > another ant command.
> > > >
> > > >
> > > > Thanks,
> > > > Santa.
> > > >
> > > > -----------------------------------------
> > > > This message and any attachments are intended only for the
> > > use of the
> > > > addressee and may contain information that is privileged and
> > > > confidential. If the reader of the message is not the intended
> > > > recipient or an authorized representative of the intended
> > > recipient,
> > > > you are hereby notified that any dissemination of this
> > > communication
> > > > is strictly prohibited. If you have received this communication in
> > > > error, notify the sender immediately by return email and delete
> > > > the message and any attachments from your system.
> > > >
> > > >
> > > >
> > > --------------------------------------------------------------------
> > > -
> > > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For
> > > > additional commands, e-mail: user-help@ant.apache.org
> > > >
> > > >
> > >
> > > --------------------------------------------------------------------
> > > -
> > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > > For additional commands, e-mail: user-help@ant.apache.org
> > >
> > >
> > >
> > > --------------------------------------------------------------------
> > > -
> > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > > For additional commands, e-mail: user-help@ant.apache.org
> > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> >
> >
>
>
> --
> Thank you
> Ramu S
>
>  If A is success in life, then A equals x plus y plus z. Work is x; y is
> play; and z is keeping your mouth shut.
> - Albert Einstein
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
>
>


-- 
Thank you
Ramu S

If A is success in life, then A equals x plus y plus z. Work is x; y is
play; and z is keeping your mouth shut.
- Albert Einstein

RE: Only one ant command is executing in batch file and not executing other commands after ant in batch file

Posted by "Vishnumalakala, Santa" <Sa...@adp.com>.
Here I need to send two build outputs as a email.

Below I am executing two ant commands.

call ant -f build1.xml > build.log
call ant -f build2.xml >> build.log	 

Above two outputs I need to send as email.
One thing is I am writing another build.xml with mail task sending build.log as a message.

Just I wanted to know is there any approach to send that output as a email without writing another build.xml.
Your inputs are required for me. Thanks for the cooperation.

Santa.



-----Original Message-----
From: sramhu@gmail.com [mailto:sramhu@gmail.com] On Behalf Of Ramu Sethu
Sent: Thursday, February 14, 2008 12:37 PM
To: Ant Users List
Subject: Re: Only one ant command is executing in batch file and not executing other commands after ant in batch file


If you use mail logger, logger itself stores sends the entire console output. So you don have to redirect the logs.

On Feb 13, 2008 4:11 PM, Vishnumalakala, Santa <Sa...@adp.com>
wrote:

> Can I send these output as email using mail logger
>
> Santa.
>
> -----Original Message-----
> From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de]
> Sent: Wednesday, February 13, 2008 3:29 PM
> To: user@ant.apache.org
> Subject: AW: Only one ant command is executing in batch file and not 
> executing other commands after ant in batch file
>
>
> call ant -f build1.xml > build.log
> call ant -f build2.xml >> build.log
>
> >  redirects to a file
> >> appends to a file
>
>
> Jan
>
>
> > -----Ursprüngliche Nachricht-----
> > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> > Gesendet: Mittwoch, 13. Februar 2008 10:49
> > An: Ant Users List
> > Betreff: RE: Only one ant command is executing in batch file and not 
> > executing other commands after ant in batch file
> >
> > Thank you. It is solving my purpose.
> > And one more problem is can I take standard output of two build 
> > files in one file?? Why because if I use below command
> >    ant -l test.log -buildfile Test1\build\build.xml
> >  test.log is always creating the new. It is not updating the existing.
> >       Thanks for your cooperation.
> > Thanks,
> > Santa.
> >
> >
> > -----Original Message-----
> > From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de]
> > Sent: Wednesday, February 13, 2008 2:28 PM
> > To: user@ant.apache.org
> > Subject: AW: Only one ant command is executing in batch file and not 
> > executing other commands after ant in batch file
> >
> >
> > use "call ant" instead of "ant".
> >
> > "ant" is a batchfile and if that is finished the called batch is 
> > terminated. with "call" your batch will proceed.
> >
> > its a windows behaviour and you'll find that in every batch ....
> >
> >
> > Jan
> >
> > > -----Ursprüngliche Nachricht-----
> > > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> > > Gesendet: Mittwoch, 13. Februar 2008 09:50
> > > An: Ant Users List
> > > Betreff: Only one ant command is executing in batch file and not 
> > > executing other commands after ant in batch file
> > >
> > >
> > > Hi,
> > >
> > >     This is Santa. I am using ANT for my development.
> > >
> > >     Problem is :: Only one ant command is executing in
> > batch file and not
> > > executing other commands after ant command in batch file
> > >
> > >     I am trying to write batch file to execute Ant tasks.But after 
> > > executing one ant command control is going to prompt rather than 
> > > executing other commands in batch file.Could you please help me to 
> > > execute all tasks in batch file. This is happening only for ant 
> > > command not any other commands in batch file.
> > >
> > >     My build.bat:
> > >
> > >     set ANT_HOME=D:\Program 
> > > Files\Ant\apache-ant-1.6.1-bin\apache-ant-1.6.1
> > >     set
> > PATH=%PATH%;%ANT_HOME%\bin;D:/vsanta/App(D)/GSNL/GSNLProject/G
> > > SNL-UI/bui
> > > ld;
> > >
> > >      ant -l test1.log -buildfile Test1\build\build.xml
> > >      ant -l test2.log -buildfile Test2\build\build.xml
> > >
> > >     Running build.bat...after executing first ant command
> > i.e. build.xml
> > > in Test1 folder(My build is success)
> > >     control is going to command  prompt rather than executing 
> > > another ant command.
> > >
> > >
> > > Thanks,
> > > Santa.
> > >
> > > -----------------------------------------
> > > This message and any attachments are intended only for the
> > use of the
> > > addressee and may contain information that is privileged and 
> > > confidential. If the reader of the message is not the intended 
> > > recipient or an authorized representative of the intended
> > recipient,
> > > you are hereby notified that any dissemination of this
> > communication
> > > is strictly prohibited. If you have received this communication in 
> > > error, notify the sender immediately by return email and delete 
> > > the message and any attachments from your system.
> > >
> > >
> > >
> > --------------------------------------------------------------------
> > -
> > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For 
> > > additional commands, e-mail: user-help@ant.apache.org
> > >
> > >
> >
> > --------------------------------------------------------------------
> > -
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> >
> >
> >
> > --------------------------------------------------------------------
> > -
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
>
>


-- 
Thank you
Ramu S

 If A is success in life, then A equals x plus y plus z. Work is x; y is play; and z is keeping your mouth shut.
- Albert Einstein


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Only one ant command is executing in batch file and not executing other commands after ant in batch file

Posted by Ramu Sethu <sr...@yahoo.co.in>.
If you use mail logger, logger itself stores sends the entire console
output. So you don have to redirect the logs.

On Feb 13, 2008 4:11 PM, Vishnumalakala, Santa <Sa...@adp.com>
wrote:

> Can I send these output as email using mail logger
>
> Santa.
>
> -----Original Message-----
> From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de]
> Sent: Wednesday, February 13, 2008 3:29 PM
> To: user@ant.apache.org
> Subject: AW: Only one ant command is executing in batch file and not
> executing other commands after ant in batch file
>
>
> call ant -f build1.xml > build.log
> call ant -f build2.xml >> build.log
>
> >  redirects to a file
> >> appends to a file
>
>
> Jan
>
>
> > -----Ursprüngliche Nachricht-----
> > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> > Gesendet: Mittwoch, 13. Februar 2008 10:49
> > An: Ant Users List
> > Betreff: RE: Only one ant command is executing in batch file
> > and not executing other commands after ant in batch file
> >
> > Thank you. It is solving my purpose.
> > And one more problem is can I take standard output of two
> > build files in one file??
> > Why because if I use below command
> >    ant -l test.log -buildfile Test1\build\build.xml
> >  test.log is always creating the new. It is not updating the existing.
> >       Thanks for your cooperation.
> > Thanks,
> > Santa.
> >
> >
> > -----Original Message-----
> > From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de]
> > Sent: Wednesday, February 13, 2008 2:28 PM
> > To: user@ant.apache.org
> > Subject: AW: Only one ant command is executing in batch file
> > and not executing other commands after ant in batch file
> >
> >
> > use "call ant" instead of "ant".
> >
> > "ant" is a batchfile and if that is finished the called batch
> > is terminated. with "call" your batch will proceed.
> >
> > its a windows behaviour and you'll find that in every batch ....
> >
> >
> > Jan
> >
> > > -----Ursprüngliche Nachricht-----
> > > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> > > Gesendet: Mittwoch, 13. Februar 2008 09:50
> > > An: Ant Users List
> > > Betreff: Only one ant command is executing in batch file and
> > > not executing other commands after ant in batch file
> > >
> > >
> > > Hi,
> > >
> > >     This is Santa. I am using ANT for my development.
> > >
> > >     Problem is :: Only one ant command is executing in
> > batch file and not
> > > executing other commands after ant command in batch file
> > >
> > >     I am trying to write batch file to execute Ant tasks.But after
> > > executing one ant command control is going to prompt rather than
> > > executing other commands in batch file.Could you please help me to
> > > execute all tasks in batch file. This is happening only for ant
> > > command not any other commands in batch file.
> > >
> > >     My build.bat:
> > >
> > >     set ANT_HOME=D:\Program
> > > Files\Ant\apache-ant-1.6.1-bin\apache-ant-1.6.1
> > >     set
> > PATH=%PATH%;%ANT_HOME%\bin;D:/vsanta/App(D)/GSNL/GSNLProject/G
> > > SNL-UI/bui
> > > ld;
> > >
> > >      ant -l test1.log -buildfile Test1\build\build.xml
> > >      ant -l test2.log -buildfile Test2\build\build.xml
> > >
> > >     Running build.bat...after executing first ant command
> > i.e. build.xml
> > > in Test1 folder(My build is success)
> > >     control is going to command  prompt rather than executing
> > > another ant command.
> > >
> > >
> > > Thanks,
> > > Santa.
> > >
> > > -----------------------------------------
> > > This message and any attachments are intended only for the
> > use of the
> > > addressee and may contain information that is privileged and
> > > confidential. If the reader of the message is not the intended
> > > recipient or an authorized representative of the intended
> > recipient,
> > > you are hereby notified that any dissemination of this
> > communication
> > > is strictly prohibited. If you have received this communication in
> > > error, notify the sender immediately by return email and delete the
> > > message and any attachments from your system.
> > >
> > >
> > >
> > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > > For additional commands, e-mail: user-help@ant.apache.org
> > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
>
>


-- 
Thank you
Ramu S

 If A is success in life, then A equals x plus y plus z. Work is x; y is
play; and z is keeping your mouth shut.
- Albert Einstein

RE: Only one ant command is executing in batch file and not executing other commands after ant in batch file

Posted by "Vishnumalakala, Santa" <Sa...@adp.com>.
Can I send these output as email using mail logger

Santa.

-----Original Message-----
From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de] 
Sent: Wednesday, February 13, 2008 3:29 PM
To: user@ant.apache.org
Subject: AW: Only one ant command is executing in batch file and not executing other commands after ant in batch file


call ant -f build1.xml > build.log
call ant -f build2.xml >> build.log

>  redirects to a file
>> appends to a file


Jan
 

> -----Ursprüngliche Nachricht-----
> Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> Gesendet: Mittwoch, 13. Februar 2008 10:49
> An: Ant Users List
> Betreff: RE: Only one ant command is executing in batch file 
> and not executing other commands after ant in batch file
> 
> Thank you. It is solving my purpose.
> And one more problem is can I take standard output of two 
> build files in one file??
> Why because if I use below command
>    ant -l test.log -buildfile Test1\build\build.xml 
>  test.log is always creating the new. It is not updating the existing.
> 	Thanks for your cooperation.
> Thanks,
> Santa.
> 
> 
> -----Original Message-----
> From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de]
> Sent: Wednesday, February 13, 2008 2:28 PM
> To: user@ant.apache.org
> Subject: AW: Only one ant command is executing in batch file 
> and not executing other commands after ant in batch file
> 
> 
> use "call ant" instead of "ant".
> 
> "ant" is a batchfile and if that is finished the called batch
> is terminated. with "call" your batch will proceed.
> 
> its a windows behaviour and you'll find that in every batch ....
> 
> 
> Jan
> 
> > -----Ursprüngliche Nachricht-----
> > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> > Gesendet: Mittwoch, 13. Februar 2008 09:50
> > An: Ant Users List
> > Betreff: Only one ant command is executing in batch file and
> > not executing other commands after ant in batch file
> > 
> > 
> > Hi,
> > 
> > 	This is Santa. I am using ANT for my development.
> > 
> > 	Problem is :: Only one ant command is executing in
> batch file and not
> > executing other commands after ant command in batch file
> > 
> > 	I am trying to write batch file to execute Ant tasks.But after
> > executing one ant command control is going to prompt rather than 
> > executing other commands in batch file.Could you please help me to 
> > execute all tasks in batch file. This is happening only for ant 
> > command not any other commands in batch file.
> > 
> > 	My build.bat:
> > 
> > 	set ANT_HOME=D:\Program
> > Files\Ant\apache-ant-1.6.1-bin\apache-ant-1.6.1
> > 	set 
> PATH=%PATH%;%ANT_HOME%\bin;D:/vsanta/App(D)/GSNL/GSNLProject/G
> > SNL-UI/bui
> > ld;
> > 
> > 	 ant -l test1.log -buildfile Test1\build\build.xml 
> > 	 ant -l test2.log -buildfile Test2\build\build.xml
> > 
> > 	Running build.bat...after executing first ant command
> i.e. build.xml
> > in Test1 folder(My build is success)
> > 	control is going to command  prompt rather than executing
> > another ant command.	
> > 
> > 
> > Thanks,
> > Santa.
> > 
> > -----------------------------------------
> > This message and any attachments are intended only for the
> use of the
> > addressee and may contain information that is privileged and
> > confidential. If the reader of the message is not the intended 
> > recipient or an authorized representative of the intended 
> recipient,
> > you are hereby notified that any dissemination of this
> communication
> > is strictly prohibited. If you have received this communication in
> > error, notify the sender immediately by return email and delete the 
> > message and any attachments from your system.
> > 
> > 
> > 
> ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> > 
> > 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


AW: Only one ant command is executing in batch file and not executing other commands after ant in batch file

Posted by Ja...@rzf.fin-nrw.de.
call ant -f build1.xml > build.log
call ant -f build2.xml >> build.log

>  redirects to a file
>> appends to a file


Jan
 

> -----Ursprüngliche Nachricht-----
> Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com] 
> Gesendet: Mittwoch, 13. Februar 2008 10:49
> An: Ant Users List
> Betreff: RE: Only one ant command is executing in batch file 
> and not executing other commands after ant in batch file
> 
> Thank you. It is solving my purpose. 
> And one more problem is can I take standard output of two 
> build files in one file??
> Why because if I use below command
>    ant -l test.log -buildfile Test1\build\build.xml 
>  test.log is always creating the new. It is not updating the existing.
> 	Thanks for your cooperation.
> Thanks,
> Santa.
> 
> 
> -----Original Message-----
> From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de] 
> Sent: Wednesday, February 13, 2008 2:28 PM
> To: user@ant.apache.org
> Subject: AW: Only one ant command is executing in batch file 
> and not executing other commands after ant in batch file
> 
> 
> use "call ant" instead of "ant".
> 
> "ant" is a batchfile and if that is finished the called batch 
> is terminated. with "call" your batch will proceed.
> 
> its a windows behaviour and you'll find that in every batch ....
> 
> 
> Jan
> 
> > -----Ursprüngliche Nachricht-----
> > Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> > Gesendet: Mittwoch, 13. Februar 2008 09:50
> > An: Ant Users List
> > Betreff: Only one ant command is executing in batch file and 
> > not executing other commands after ant in batch file
> > 
> > 
> > Hi,
> > 
> > 	This is Santa. I am using ANT for my development.
> > 
> > 	Problem is :: Only one ant command is executing in 
> batch file and not 
> > executing other commands after ant command in batch file
> > 
> > 	I am trying to write batch file to execute Ant tasks.But after 
> > executing one ant command control is going to prompt rather than 
> > executing other commands in batch file.Could you please help me to 
> > execute all tasks in batch file. This is happening only for ant 
> > command not any other commands in batch file.
> > 
> > 	My build.bat:
> > 
> > 	set ANT_HOME=D:\Program 
> > Files\Ant\apache-ant-1.6.1-bin\apache-ant-1.6.1
> > 	set 
> PATH=%PATH%;%ANT_HOME%\bin;D:/vsanta/App(D)/GSNL/GSNLProject/G
> > SNL-UI/bui
> > ld;
> > 
> > 	 ant -l test1.log -buildfile Test1\build\build.xml 
> > 	 ant -l test2.log -buildfile Test2\build\build.xml
> > 
> > 	Running build.bat...after executing first ant command 
> i.e. build.xml 
> > in Test1 folder(My build is success)
> > 	control is going to command  prompt rather than executing
> > another ant command.	
> > 
> > 
> > Thanks,
> > Santa.
> > 
> > -----------------------------------------
> > This message and any attachments are intended only for the 
> use of the 
> > addressee and may contain information that is privileged and 
> > confidential. If the reader of the message is not the intended 
> > recipient or an authorized representative of the intended 
> recipient, 
> > you are hereby notified that any dissemination of this 
> communication 
> > is strictly prohibited. If you have received this communication in 
> > error, notify the sender immediately by return email and delete the 
> > message and any attachments from your system.
> > 
> > 
> > 
> ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> > 
> > 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


RE: Only one ant command is executing in batch file and not executing other commands after ant in batch file

Posted by "Vishnumalakala, Santa" <Sa...@adp.com>.
Thank you. It is solving my purpose. 
And one more problem is can I take standard output of two build files in one file??
Why because if I use below command
   ant -l test.log -buildfile Test1\build\build.xml 
 test.log is always creating the new. It is not updating the existing.
	Thanks for your cooperation.
Thanks,
Santa.


-----Original Message-----
From: Jan.Materne@rzf.fin-nrw.de [mailto:Jan.Materne@rzf.fin-nrw.de] 
Sent: Wednesday, February 13, 2008 2:28 PM
To: user@ant.apache.org
Subject: AW: Only one ant command is executing in batch file and not executing other commands after ant in batch file


use "call ant" instead of "ant".

"ant" is a batchfile and if that is finished the called batch is terminated. with "call" your batch will proceed.

its a windows behaviour and you'll find that in every batch ....


Jan

> -----Ursprüngliche Nachricht-----
> Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com]
> Gesendet: Mittwoch, 13. Februar 2008 09:50
> An: Ant Users List
> Betreff: Only one ant command is executing in batch file and 
> not executing other commands after ant in batch file
> 
> 
> Hi,
> 
> 	This is Santa. I am using ANT for my development.
> 
> 	Problem is :: Only one ant command is executing in batch file and not 
> executing other commands after ant command in batch file
> 
> 	I am trying to write batch file to execute Ant tasks.But after 
> executing one ant command control is going to prompt rather than 
> executing other commands in batch file.Could you please help me to 
> execute all tasks in batch file. This is happening only for ant 
> command not any other commands in batch file.
> 
> 	My build.bat:
> 
> 	set ANT_HOME=D:\Program 
> Files\Ant\apache-ant-1.6.1-bin\apache-ant-1.6.1
> 	set PATH=%PATH%;%ANT_HOME%\bin;D:/vsanta/App(D)/GSNL/GSNLProject/G
> SNL-UI/bui
> ld;
> 
> 	 ant -l test1.log -buildfile Test1\build\build.xml 
> 	 ant -l test2.log -buildfile Test2\build\build.xml
> 
> 	Running build.bat...after executing first ant command i.e. build.xml 
> in Test1 folder(My build is success)
> 	control is going to command  prompt rather than executing
> another ant command.	
> 
> 
> Thanks,
> Santa.
> 
> -----------------------------------------
> This message and any attachments are intended only for the use of the 
> addressee and may contain information that is privileged and 
> confidential. If the reader of the message is not the intended 
> recipient or an authorized representative of the intended recipient, 
> you are hereby notified that any dissemination of this communication 
> is strictly prohibited. If you have received this communication in 
> error, notify the sender immediately by return email and delete the 
> message and any attachments from your system.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


AW: Only one ant command is executing in batch file and not executing other commands after ant in batch file

Posted by Ja...@rzf.fin-nrw.de.
use "call ant" instead of "ant".

"ant" is a batchfile and if that is finished the called batch is terminated.
with "call" your batch will proceed.

its a windows behaviour and you'll find that in every batch ....


Jan

> -----Ursprüngliche Nachricht-----
> Von: Vishnumalakala, Santa [mailto:Santa_Vishnumalakala@adp.com] 
> Gesendet: Mittwoch, 13. Februar 2008 09:50
> An: Ant Users List
> Betreff: Only one ant command is executing in batch file and 
> not executing other commands after ant in batch file
> 
> 
> Hi,
> 
> 	This is Santa. I am using ANT for my development.
> 
> 	Problem is :: Only one ant command is executing in batch file
> and not executing other commands after ant command in batch file
> 
> 	I am trying to write batch file to execute Ant tasks.But after
> executing one ant command control is going to prompt rather than
> executing other commands in batch file.Could you please help me to
> execute all tasks in batch file. This is happening only for 
> ant command
> not any other commands in batch file.
> 
> 	My build.bat:
> 
> 	set ANT_HOME=D:\Program
> Files\Ant\apache-ant-1.6.1-bin\apache-ant-1.6.1
> 	set
> PATH=%PATH%;%ANT_HOME%\bin;D:/vsanta/App(D)/GSNL/GSNLProject/G
> SNL-UI/bui
> ld;
> 
> 	 ant -l test1.log -buildfile Test1\build\build.xml 
> 	 ant -l test2.log -buildfile Test2\build\build.xml 
> 
> 	Running build.bat...after executing first ant command i.e.
> build.xml in Test1 folder(My build is success)
> 	control is going to command  prompt rather than executing
> another ant command.	
> 
> 
> Thanks,
> Santa.
> 
> -----------------------------------------
> This message and any attachments are intended only for the use of
> the addressee and may contain information that is privileged and
> confidential. If the reader of the message is not the intended
> recipient or an authorized representative of the intended
> recipient, you are hereby notified that any dissemination of this
> communication is strictly prohibited. If you have received this
> communication in error, notify the sender immediately by return
> email and delete the message and any attachments from your system.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org