I want to tar different sources to different Archives. I tried the if-Task from the Ant-Contrib and it works.
Thanks for all your help. -----Urspr�ngliche Nachricht----- Von: Thomas Schapitz [mailto:[EMAIL PROTECTED] Gesendet: Samstag, 19. Februar 2005 01:26 An: Ant Users List Betreff: Re: Rename a property value Sorry, but this won't work this way. In Ant properties are just like variables declared as 'final', meaning: they can get set only once. What is it, that you like to achieve? Thomas Kasparek, Bernadette schrieb: >Hi everybody, > >I've a problem. I want to define a property which I want to rename in the >Main-Target, so that I can use it with different values. > >In detail I have the following code: > ><property name="tar.name" value="tar.default"/> > ><target name="main> > <property name="tar.name" value="new"/> > <antcall target="tar-all"/> <-- here I will use the property ></target> > >My problem is, that it always take the first value. Is there a way how I can >rename the value? > >Thanks, > >Bernadette Kasparek > > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
