in src/main/java/org/apache/nifi/NarMojo.java [851:859]
private void createDirectory(final File file) throws MojoExecutionException {
if (!file.exists()) {
try {
Files.createDirectories(file.toPath());
} catch (IOException e) {
throw new MojoExecutionException("Could not create directory " + file, e);
}
}
}