I'm writing an Ant Task:
public class MyTask extends Task {
public void execute() {
....
}
}
Now I'm wondering whether it is possible for me to call a target that exists in another known xml file from within the above execute() method?
Something like:
public void execute() {
AntCaller.call("anotherBuildFile.xml", "someTarget");
}