RE: Setting property values programatically

2001-12-17 Thread Ext-Mike . Hogan
. December 2001 14:38 To: Ant Users List Subject: Re: Setting property values programatically You just want to load a properties file that was just updated with propertyfile, right? Why not use property file=./ - Original Message - From: [EMAIL PROTECTED] To: [EMAIL

Re: setting property

2001-12-03 Thread Diane Holt
--- Erik Hatcher [EMAIL PROTECTED] wrote: property environment=env / property name=env.PROJECT_HOME value=c:\project/ property name=project.home value=env.PROJECT_HOME/ Actually, you'll want that to be value=${env.PROJECT_HOME}. Diane = ([EMAIL

Re: setting property

2001-11-30 Thread Erik Hatcher
Would you mind sharing a bit more of the specific scenario and problem you're trying to solve with this request? Perhaps there are other ways of accomplishing what you're after. - Original Message - From: Vishweshwar, Ghanakota [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday,

Re: setting property

2001-11-30 Thread Erik Hatcher
To: Ant Users List Subject: Re: setting property Would you mind sharing a bit more of the specific scenario and problem you're trying to solve with this request? Perhaps there are other ways of accomplishing what you're after. - Original Message - From: Vishweshwar

Re: Setting property depend of other properties

2001-11-14 Thread Stefan Bodewig
On Tue, 13 Nov 2001, Diane Holt [EMAIL PROTECTED] wrote: Thanks for pointing out the simpler approach, Even if it is simpler, it is unintuitive and difficult to understand by the uninitiated (same holds true for your first version). Furthermore, both our versions will result in build failures

Re: Setting property depend of other properties

2001-11-13 Thread Diane Holt
--- Holger Danske [EMAIL PROTECTED] wrote: I want to set a new property depend on others properties, something like: condition name=newproperty and available _property_A available _property_B available _property_c /and /condition Does anybody have an idea. If you

Re: Setting property depend of other properties

2001-11-13 Thread Stefan Bodewig
On Tue, 13 Nov 2001, Diane Holt [EMAIL PROTECTED] wrote: target name=setNewproperty property name=chkpropA value=$${propA}/ property name=chkpropB value=$${propB}/ property name=chkpropC value=$${propC}/ condition property=newproperty not or

Re: Setting property depend of other properties

2001-11-13 Thread Diane Holt
--- Stefan Bodewig [EMAIL PROTECTED] wrote: Doesn't this condition property=newproperty not or equals arg1=${propA} arg2=$${propA}/ equals arg1=${propB} arg2=$${propB}/ equals arg1=${propC} arg2=$${propC}/ /or /not /condition