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...";
LOG.error(message, e);
System.err.println(message + " - " + e.getMessage());
} catch (IOException e) {