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]

Reply via email to