You can try the Ant xslt task: http://ant.apache.org/manual/CoreTasks/style.html
Best regards, Kees van Dieren Senior Software Engineer MP Objects Supply Chain Software Stationsplein 45 3013 AK Rotterdam The Netherlands Post address: Postbus 29126 3001 GC Rotterdam Mobile: +31 (0)6-43068619 Phone: +31 (0)10-2900304 Fax: +31 (0)10-2900305 MSN: [EMAIL PROTECTED] -----Original Message----- From: Giovanni Mesturini [mailto:[EMAIL PROTECTED] Sent: Monday, February 13, 2006 3:43 PM To: user@ant.apache.org Subject: Change XML by Ant Hi community, is there a way to change an XML file using Ant's script? I found the XMLProperty tasks that reads an XML, but it seems to be read-only. from a file <root> <properties> <foo value="1"/> <foo value="2"/> <foo value="1"/> <foo value="3"/> </properties> </root> I have to remove every <property> that have value="1", in order to have as result <root> <properties> <foo value="2"/> <foo value="3"/> </properties> </root> I need this because I'm building up an Eclipse workspace with Ant, so in order to change projects dependencies I have to manipulate XML config files too. Thank you very much Jo ___________________________________ Yahoo! Mail: gratis 1GB per i messaggi e allegati da 10MB http://mail.yahoo.it --------------------------------------------------------------------- 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]