I am using ant externally, i.e. I construct org.apache.tools.ant.Project dynamically in my program: setup its Tasks, Targets etc., then I want to create build.xml file. How is possible? How possible export this project into ordinal ant build.xml?
views:
13answers:
1
A:
I've been working with the ant codebase a lot recently, and I'm afraid I don't think this is possible.
Since you're the one generating the project in the first place, it might be easier if you generate the XML at the same time.
dty
2010-06-21 18:40:27
thanks, I did not find this possibility and do not sure should I dig into - to search is it possible or not. Anyway the question is open...Strange what ant developers do not think to implement this nice feature.
vitali_y
2010-06-22 10:51:56
It's open source. You could always go and implement it yourself and contribute it back to the community.
dty
2010-06-22 12:27:27