Re: change to a property

2004-07-31 Thread mail.laconiadatasystems.com
Thats what I was looking for Thanks Dale! -Martin - Original Message - From: "Dale Anson" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Saturday, July 31, 2004 12:19 PM Subject: Re: change to a property > Another option would be

Re: change to a property

2004-07-31 Thread Dale Anson
Another option would be to use the 'variable' task from ant-contrib. 'variable' is used exactly like a property, but is mutable. Dale Bill Rich wrote: Properties are immutable so you can not change them once they are set. But, you can specify the value multiple times so that only the first one w

RE: change to a property

2004-07-31 Thread Bill Rich
Properties are immutable so you can not change them once they are set. But, you can specify the value multiple times so that only the first one will take effect. You can specify the value of a property on the command line (-Dprop=value). This will be the first setting of the property so no other