in src/main/java/org/apache/maven/plugins/jdeprscan/TestJDeprScanMojo.java [60:69]
protected Collection<Path> getClassPath() throws DependencyResolutionRequiredException {
Set<Path> classPath =
new LinkedHashSet<>(getProject().getTestClasspathElements().size());
for (String elm : getProject().getTestClasspathElements()) {
classPath.add(Paths.get(elm));
}
return Collections.unmodifiableSet(classPath);
}