Re: AW: Reversing a list

2009-08-05 Thread Raagu
Ok.. But in my script i cant assign newlist values to a property because In my script newlist values will change dynamically over many iteration and i need process.. Other than assigning to a property Is there any other options ??? glenn opdycke-hansen wrote: > > Ant properties are immutable

Re: AW: Reversing a list

2009-08-05 Thread glenn opdycke-hansen
Ant properties are immutable, once the property is given a value that value cannot be changed. See http://ant.apache.org/manual/CoreTasks/property.html I believe the suggestion was to define a new property (with a new name). The value of the new property can then be assigned. -glenn

RE: AW: Reversing a list

2009-08-05 Thread Rebhan, Gilbert
P.S. : using $attributes.get('in').split(',') because i assumed your list is given comma separated, f.e. like being set via Regards, Gilbert -Original Message- From: Rebhan, Gilbert Sent: Wednesday, August 05, 2009 3:42 PM To: 'Ant Users List' Sub

RE: AW: Reversing a list

2009-08-05 Thread Rebhan, Gilbert
-Original Message- From: Raagu [mailto:rknilekani2...@gmail.com] Sent: Wednesday, August 05, 2009 3:17 PM To: user@ant.apache.org Subject: Re: AW: Reversing a list /* [..] How can i access the the newlist here (outside task) I tried ${list} But it is giving old values

Re: AW: Reversing a list

2009-08-05 Thread Raagu
Hey Thanks for awesome reply.. I have done the same procedure.. I have included groovy jar file n excuted groovy codes within tags.. Now I am not getting How to pass a variable from to the main script.. i,e How Do i access a variable outside tag.. The variable is set within tag.. Here is the