in src/main/java/org/apache/nifi/NarMojo.java [862:874]
private void copyDependencies() throws MojoExecutionException {
DependencyStatusSets dss = getDependencySets();
Set<Artifact> artifacts = dss.getResolvedDependencies();
for (Artifact artifact : artifacts) {
copyArtifact(artifact);
}
artifacts = dss.getSkippedDependencies();
for (Artifact artifact : artifacts) {
getLog().debug(artifact.getFile().getName() + " already exists in destination.");
}
}