117118119120121122123124125126127
if (target == null) { target = project.getDefaultTarget(); } project.executeTarget(target); } catch (BuildException e) { error = e; throw new ExecutionException(e); } finally { project.fireBuildFinished(error);
115116117118119120121122123124125