I can see your concern with clearcase, although there are ant tasks to do your clearcase bidding.
But why would you need to version control the classes directory? Are you also putting compiled code into source control? Jon Culli Senior Developer Bank One (http://www.bankone.com) Phone: 1-312-661-6354 Avery Marvin R <[EMAIL PROTECTED]> on 06/11/2003 09:55:37 AM Please respond to "Ant Users List" <[EMAIL PROTECTED]> To: "'Ant Users List'" <[EMAIL PROTECTED]> cc: Subject: RE: Ant newbie - simple question The classes dir is version controlled in clearcase. We're using snapshot views (since ant needs timestamps). It's a pain to have to do an update after a clean. -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 11, 2003 9:43 AM To: Ant Users List Subject: RE: Ant newbie - simple question After the classes directory is removed, you might just recreate it with <mkdir> in some sort of initialization target. Jon Culli Senior Developer Bank One (http://www.bankone.com) Phone: 1-312-661-6354 Avery Marvin R <[EMAIL PROTECTED]> on 06/11/2003 09:39:57 AM Please respond to "Ant Users List" <[EMAIL PROTECTED]> To: "'Ant Users List'" <[EMAIL PROTECTED]> cc: Subject: RE: Ant newbie - simple question The problem is that it removes the classes dir (without the wildcard). I dont want that, I just want to remove the subdirs. -----Original Message----- From: Bansemir, Carsten [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 11, 2003 9:34 AM To: Ant Users List Subject: AW: Ant newbie - simple question try it without any wildcards, that it should work fine (it does for me): <target name="clean"> <delete dir="${dir_classes}"/> </target> -----Urspr�ngliche Nachricht----- Von: Avery Marvin R [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 11. Juni 2003 16:30 An: 'Ant Users List' Betreff: Ant newbie - simple question First my complaint: this is trivial using make! Now the question: Why does the following seemingly simple and straight-forward ant xml script _not_ remove the subdirs under the classes dir (Windows NT OS)? Thanks in advance. <target name="clean"> <delete dir="${dir_classes}/*"/> </target> NOTE: ** after the / doesn't work either! Marvin Avery --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] This transmission may contain information that is privileged, confidential and/or exempt from disclosure under applicable law. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution, or use of the information contained herein (including any reliance thereon) is STRICTLY PROHIBITED. If you received this transmission in error, please immediately contact the sender and destroy the material in its entirety, whether in electronic or hard copy format. Thank you. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] This transmission may contain information that is privileged, confidential and/or exempt from disclosure under applicable law. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution, or use of the information contained herein (including any reliance thereon) is STRICTLY PROHIBITED. If you received this transmission in error, please immediately contact the sender and destroy the material in its entirety, whether in electronic or hard copy format. Thank you. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
