private void doBuild() {
System.out.println("Beginning build...");
System.out.println();
ProjectXMLHelper projectXMLHelper = new ProjectXMLHelper();
PluginXMLHelper pluginXMLHelper = new PluginXMLHelper(projectXMLHelper);
try {
DistributedMasterBuilder distributedBuildMaster = (DistributedMasterBuilder) pluginXMLHelper.configure(
distributedBuilderElement, DistributedMasterBuilder.class, false);
XMLOutputter xmlOutputter = new XMLOutputter();
xmlOutputter.output(distributedBuildMaster.build(new Properties()), System.out);
} catch (CruiseControlException e) {
String message = "Oops...";