in src/main/java/org/apache/maven/shared/io/scan/mapping/SingleTargetMapping.java [49:55]
public Set<File> getTargetFiles(File targetDir, String source) throws InclusionScanException {
if (!source.endsWith(sourceSuffix)) {
return Collections.<File>emptySet();
}
return Collections.singleton(new File(targetDir, outputFile));
}