in src/main/java/org/apache/maven/shared/dependency/analyzer/ProjectDependencyAnalysis.java [79:89]
public ProjectDependencyAnalysis(
Set<Artifact> usedDeclaredArtifacts,
Set<Artifact> usedUndeclaredArtifacts,
Set<Artifact> unusedDeclaredArtifacts,
Set<Artifact> testArtifactsWithNonTestScope) {
this(
mapWithKeys(usedDeclaredArtifacts),
mapWithKeys(usedUndeclaredArtifacts),
unusedDeclaredArtifacts,
testArtifactsWithNonTestScope);
}