for (Entry<String, File> entry :
ResourceGeneratorUtilImpl.getGeneratedFilesByName().entrySet()) {
String resourcePath = entry.getKey();
File resourceFile = entry.getValue();
compilerContext.getLibraryWriter()
.addBuildResource(new FileResource(null, resourcePath, resourceFile));
}
}