in tools/karaf-boot-maven-plugin/src/main/java/org/apache/karaf/boot/maven/GenerateMojo.java [211:218]
public OutputStream create(File file) {
try {
file.getParentFile().mkdirs();
return buildContext.newFileOutputStream(file);
} catch (IOException e) {
throw new RuntimeException("Error creating file " + file, e);
}
}