Re: Replace string in file

2008-05-15 Thread David Weintraub
On Thu, May 15, 2008 at 9:17 AM, Guy Catz <[EMAIL PROTECTED]> wrote: > Thanks for the answer. > > I need to replace @token@ with . > But the ANT engine tells me that I can't use '<' or '>'. You have to escape those with "<" and ">" for "<" and ">" respectively. The build.xml file is a XML file, an

Re: modifying an existing jar file using ant

2008-05-15 Thread Dominique Devienne
On Thu, May 15, 2008 at 12:58 AM, Abbi, Gaurav <[EMAIL PROTECTED]> wrote: > Can we modify an existing jar file with ant. But the Jar is rebuilt from scratch under the cover though. --DD - To unsubscribe, e-mail: [EMAIL PROTECTE

modifying an existing jar file using ant

2008-05-15 Thread Abbi, Gaurav
Hi, Can we modify an existing jar file with ant. Is there any ant task available for this. Modifications are like adding a class files to a jar. thanks, Gaurav Abbi

AW: Replace string in file

2008-05-15 Thread Jan.Materne
You have to mask that like everywhere in XML. Jan > -Ursprüngliche Nachricht- > Von: Guy Catz [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 15. Mai 2008 15:17 > An: Ant Users List > Betreff: RE: Replace string in file > > Thanks for the answer. > > I need to replace @token@ with .

RE: Replace string in file

2008-05-15 Thread Guy Catz
Thanks for the answer. I need to replace @token@ with . But the ANT engine tells me that I can't use '<' or '>'. Please advice. Thanks. -Original Message- From: David Weintraub [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 13, 2008 8:27 PM To: Ant Users List Subject: Re: Replace string

Re: AW: Attributes for -verbose & -debug?

2008-05-15 Thread Tom Corcoran
Ah yes. Right click in the Ant window, chose Run As| Open external tool editor and add -verbose -debug in the arguments memobox. Works perfectly. Thanks. But in Eclipse you could specify the additional parameters like -verbose or -debug > Von: Tom Corcoran [mailto:[EMAIL PROTECTED] > Gesendet:

AW: Attributes for -verbose & -debug?

2008-05-15 Thread Jan.Materne
No. With these settings you set the loglevel for the registered listeners. But in Eclipse you could specify the additional parameters like -verbose or -debug Jan > -Ursprüngliche Nachricht- > Von: Tom Corcoran [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 15. Mai 2008 12:58 > An: u

Attributes for -verbose & -debug?

2008-05-15 Thread Tom Corcoran
I am running Ant via Eclipse. On the command line I can do -verbose and -debug to get extra information. Are there any attributes I can add in the ant build file which will allow the -verbose/-debug output to be returned to the console? Thanks, Tom. -- View this message in context: http://www.n

Re: Ant task walk html and find broken links

2008-05-15 Thread Steve Loughran
gregsmit wrote: Hi, I thought something like this might already exist, but I haven't been able to find anything yet. Does anyone know of an Ant task that I could use to walk through a website (that I built with ant) to confirm that there are no broken links? I found one really old project on

RE: how to change the property value at run time

2008-05-15 Thread Irfan.Sayed
Thanks to all. I got the concept now. Regards, Irfan -Original Message- From: David Weintraub [mailto:[EMAIL PROTECTED] Sent: Thursday, May 15, 2008 7:10 AM To: Ant Users List Subject: Re: how to change the property value at run time Once an Ant property is set, you can't change it. How