Re: immutable property

2004-11-04 Thread Erik Hatcher
Or, and I think even cleaner - put preparation stuff outside (and above for clarity) any targets. In Ant 1.6, anything can be outside of , not just as before. Erik On Nov 3, 2004, at 8:29 PM, Bill Rich wrote: From the output shown it looks to me like CopyBRBuildArtifacts ran before pr

RE: immutable property

2004-11-03 Thread Bill Rich
>From the output shown it looks to me like CopyBRBuildArtifacts ran before prepare. Try making CopyBRBuildArtifacts depend on prepare. HTH Bill Rich Wilandra Consulting LLC 1325 Addiewell Place San Jose, CA 95120-3905 phone: +1 408 268-2452 mobile: +1 408 410-9713 Santa Cruz: +1 831 464

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