iterate int xml file using ant

后端 未结 3 1488
无人共我
无人共我 2021-01-07 10:39

I´ve a Xml file with the struct below. I want to read the nod by node and call a specific task with the values without commom separator.In Ant this is possible ?

<         


        
3条回答
  •  长情又很酷
    2021-01-07 11:23

    Ant projects cannot be nested within the same Ant build file. However, build logic can be modularized using MacroDefs. In addition, subprojects can have their own build files, which may be called from a master build file using the Ant Ant task. Ant targets may be called within the same build file using the AntCall task.

提交回复
热议问题