protected Collection getClassPath()

in src/main/java/org/apache/maven/plugins/jdeps/TestJDKInternalsMojo.java [70:79]


    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 classPath;
    }