RE: Passing properties as parameters to different targets in a build file

2007-12-03 Thread Agarkar, M (Milind)
if you have log.dir read from the properties file, it is already set, so you may not be able to set it again We use something like this You can either change name of the default property OR local property -Original Message- From: Shankar S [mailto:[EMAIL PROTECTED] Sent: 0

RE: Stopping a process identified by name

2007-11-28 Thread Agarkar, M (Milind)
is no build-in task for that. You could use in combination of a system command "kill" and the process id ... Jan > -Ursprüngliche Nachricht- > Von: Agarkar, M (Milind) [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch, 28. November 2007 14:05 > An: Ant Users List

Stopping a process identified by name

2007-11-28 Thread Agarkar, M (Milind)
Hi, Is there a way to stop/kill a process running on unix using the ant script ? Would I need to write a custom task ? Thanks, Milind _ This email (including any attachments to it) is confidential, legally privileged, subject to copyri

RE: Returning a string as output from ANT task

2007-11-09 Thread Agarkar, M (Milind)
Thanks. That worked fine. -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: 09 November 2007 10:55 To: Ant Users List Subject: Re: Returning a string as output from ANT task Agarkar, M (Milind) wrote: > Hi, > > I am trying to write a custom ant task to a

Returning a string as output from ANT task

2007-11-09 Thread Agarkar, M (Milind)
Hi, I am trying to write a custom ant task to accept two parameters and return a string as the output. I have tried the following 1. First I did use the java task with 'outputproperty' and that works well, returns the output string fine, however, it also returns a lot of log statements from the j