Re: convert ant path without assigning to immutable property

2010-08-20 Thread Jacob Beard
path segment AND the transformed path segment to a macro. The problem is that it's not clear to me how to transform the path, without assigning the transformed path to an immutable property. The slightly simplified build file is

Re: convert ant path without assigning to immutable property

2010-08-20 Thread Peter Reilly
o a macro. > > The problem is that it's not clear to me how to transform the path, without > assigning the transformed path to an immutable property. > > The s

convert ant path without assigning to immutable property

2010-08-20 Thread Jacob Beard
clear to me how to transform the path, without assigning the transformed path to an immutable property. The slightly simplified build file is

Re: immutable property

2004-11-04 Thread Erik Hatcher
-Original Message- From: Zafarano, Marcus [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 03, 2004 4:51 PM To: Ant Users List Subject: immutable property As stated in the ANT doc: Properties are immutable: whoever sets a property first freezes it for the rest of the build; they are most

RE: immutable property

2004-11-03 Thread Bill Rich
831 464-9007 fax:+1 413 669-9716 [EMAIL PROTECTED] http://www.wilandra.com -Original Message- From: Zafarano, Marcus [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 03, 2004 4:51 PM To: Ant Users List Subject: immutable property As stated in the ANT doc: Properties are immuta

Re: immutable property

2004-11-03 Thread Wascally Wabbit
This is not quite correct. If you make the "CopyBRBuildArtifacts" target depend on the "prepare" target, then the *project-wide* properties, once created by prepare, would be still available to CopyBRBuildArtifacts. Do like: The ordering of your target execution seems wrong. At 08:53 PM 11/3/2004,

Re: immutable property

2004-11-03 Thread Alexey N. Solofnenko
I think you execute the targets in the opposite order. Please add dependency on "prepare" in CopyBRBuildArtifacts target. - Alexey. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: immutable property

2004-11-03 Thread Alexey N. Solofnenko
It is incorrect. Properties exist only within a scope of the current project (, , and others create new subprojects). - Alexey. Kris Read wrote: Properties only exist within the scope of the parent tag (in this case in the target you declared it in). You have to explicitly pass it to a new targe

Re: immutable property

2004-11-03 Thread Kris Read
Properties only exist within the scope of the parent tag (in this case in the target you declared it in). You have to explicitly pass it to a new target. On Wed, 03 Nov 2004 16:50:41 -0800, Zafarano, Marcus <[EMAIL PROTECTED]> wrote: > As stated in the ANT doc: > > Properties are immutable: who

immutable property

2004-11-03 Thread Zafarano, Marcus
As stated in the ANT doc: Properties are immutable: whoever sets a property first freezes it for the rest of the build; they are most definately not variable. There are six ways to set properties: * By supplying both the name and value attribute" I am setting in prepare, but when I c