Re: Change property value

2011-02-19 Thread Scot P. Floess
certainly well taken :D On Sat, 19 Feb 2011, Gilbert Rebhan wrote: Original Message Subject: Re: Change property value From: Scot P. Floess To: Ant Users List Date: Sat Feb 19 2011 00:56:10 GMT+0100 (CET) Beanshell is pretty good as well...and may as well be Java ;)

Re: Change property value

2011-02-19 Thread Gilbert Rebhan
Original Message Subject: Re: Change property value From: Scot P. Floess To: Ant Users List Date: Sat Feb 19 2011 00:56:10 GMT+0100 (CET) > Beanshell is pretty good as well...and may as well be Java ;) > > >> solution 2, use some scripting language runnin

Re: Change property value

2011-02-18 Thread Scot P. Floess
Beanshell is pretty good as well...and may as well be Java ;) solution 2, use some scripting language running in JVM and make use of ant api. Groovy [2] recommended, because IMO (after using javascript/rhino and jruby in ant before) groovy has the best compatibility to java and the task is gre

Re: Change property value

2011-02-18 Thread Gilbert Rebhan
Original Message Subject: Change property value From: shaffic To: user@ant.apache.org Date: Fri Feb 18 2011 14:24:22 GMT+0100 (CET) > > is the any alter method to change the property value which is initializd > > Thanks > Shaffic In core ant properties are

Re: Change property value

2011-02-18 Thread Jonathan Rosenberg
You can use the task from the Ant Contrib library: http://ant-contrib.sourceforge.net/tasks/tasks/index.html -- Jonathan Rosenberg Founder & Executive Director Tabby's Place, a Cat Sanctuary http://www.tabbysplace.org/ On Fri, Feb 18, 2011 at 10:27 AM, Stefan Bodewig wrote: >

Re: Change property value

2011-02-18 Thread Matt Benson
On Feb 18, 2011, at 9:27 AM, Stefan Bodewig wrote: > On 2011-02-18, shaffic wrote: > >> is the any alter method to change the property value which is initializd > > No. In Ant properties are immutable by design. > Do check out the task and see if it will help, however. Matt > Stefan > >

Re: Change property value

2011-02-18 Thread Stefan Bodewig
On 2011-02-18, shaffic wrote: > is the any alter method to change the property value which is initializd No. In Ant properties are immutable by design. Stefan - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For addit

Change property value

2011-02-18 Thread shaffic
is the any alter method to change the property value which is initializd Thanks Shaffic -- View this message in context: http://ant.1045680.n5.nabble.com/Change-property-value-tp3391064p3391064.html Sent from the Ant - Users mailing list archive at Nabble.com

Re: Change Property Value

2011-02-18 Thread Manas Panda
ow i want to change the value > of that property.can any one help me in this pls??? > > > Thanks > Shaffic > -- > View this message in context: > http://ant.1045680.n5.nabble.com/Change-Property-Value-tp3390614p3390614.html > Sent from the

Change Property Value

2011-02-18 Thread shaffic
HI All, I Created a property and value ad initilized.now i want to change the value of that property.can any one help me in this pls??? Thanks Shaffic -- View this message in context: http://ant.1045680.n5.nabble.com/Change-Property-Value-tp3390614p3390614.html Sent from the Ant - Users

Re: how to change property value in config file ?

2008-03-30 Thread Gilles Scokart
http://ant.apache.org/manual/OptionalTasks/propertyfile.html Isn't what you are searching for? On 28/03/2008, Md. Jahidul Hasan <[EMAIL PROTECTED]> wrote: > Hi > > Is there any way to handle configuration files with ant ? I have a config > file which contains some properties with correspond v

Re: how to change property value in config file ?

2008-03-30 Thread David Weintraub
Take a gander at the task. On Fri, Mar 28, 2008 at 4:19 AM, Md. Jahidul Hasan <[EMAIL PROTECTED]> wrote: > Hi > > Is there any way to handle configuration files with ant ? I have a config > file which contains some properties with correspond values. > > property 1= value 1 > property 2= value

how to change property value in config file ?

2008-03-28 Thread Md. Jahidul Hasan
Hi Is there any way to handle configuration files with ant ? I have a config file which contains some properties with correspond values. property 1= value 1 property 2= value 2 property 3= value 3 I want to change the values by searching the property name. BR Hasan