for (Object k : props.keySet()) {
String key = k.toString();
Circumflex.update(key, props.getProperty(key));
}
// Execute docco
DoccoBatch db = new DoccoBatch();
if (customResources != null)
for (String res : customResources)
db.addCustomResource(res);
getLog().info("Generating docco in " + db.outputPath());
db.generate();
}