The manual says we can pass the comma seperated values but it doesn't accept that Any ideas as to why it is not accepting that
vishal -----Original Message----- From: Greg Irvine [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 11, 2006 4:27 AM To: 'Ant Users List' Subject: RE: Property problem in 1.6.5 Hi Ben. Correct you are. I discovered the err of my ways a few days ago (and forgot to repost to the group). Thanks. Greg. -----Original Message----- From: Burgess, Benjamin [mailto:[EMAIL PROTECTED] Sent: Tuesday, 11 April 2006 1:04 AM To: Ant Users List Cc: [EMAIL PROTECTED] Subject: RE: Property problem in 1.6.5 FYI, this is a common mistake made; people use antcall incorrectly when what they needed was the project depends attribute. Ben -----Original Message----- From: Greg Irvine [mailto:[EMAIL PROTECTED] Sent: Thursday, April 06, 2006 7:11 PM To: 'Ant Users List' Subject: Property problem in 1.6.5 Hi all. I'm having a problem with property values not existing outside of the target they're created/set in. For example (see below), I have a "jar" target that calls an "update" target. The update calls svn status to populate a property with the current svn version number and then I echo the property. Control then returns to "jar" where I attempt to echo the property again. The property echoes correctly within the "update" target (e.g.) "11134", but displays as "${repository.revision} in the "jar" echo. Any ideas? Please CC me in the response for faster delivery. Thanks and regards, Greg. <target name="jar"> <antcall target="update> <echo>REVISION=${ repository.revision }</echo> </target> <target name="update"> <svn> <status path="." revisionProperty="repository.revision"/> </svn> <echo>REVISION=${ repository.revision }</echo> </target> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] ************************************************************** This message, including any attachments, contains confidential information intended for a specific individual and purpose, and is protected by law. If you are not the intended recipient, please contact sender immediately by reply e-mail and destroy all copies. You are hereby notified that any disclosure, copying, or distribution of this message, or the taking of any action based on it, is strictly prohibited. TIAA-CREF ************************************************************** --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]