use of org.apache.tools.ant.types.Commandline in project ceylon-compiler by ceylon.
the class CeylonAntTask method execute.
/** Executes the task */
public void execute() {
Java7Checker.check();
checkParameters();
Commandline cmd = buildCommandline();
if (cmd != null) {
executeCommandline(cmd);
}
}
Aggregations