ByteArrayInputStream bais = new ByteArrayInputStream(configFile.getBytes());
ConfigurationParser parser = new YamlParser();
Configuration config = parser.parse(new InputStreamReader(bais), null).resolvePaths(
new PathResolver(tmpDirs,
Sets.<FileParsePostProcessor>newHashSet(new FileParsePostProcessor(){
public Set<FileInfo> process(Set<FileInfo> files) {
Set<FileInfo> processed = Sets.newHashSet();
for (FileInfo fileInfo : files) {
processed.add(new FileInfo(fileInfo.getFilePath(),
code.lastModified(), -1, false, true, null, fileInfo.getDisplayPath()));