protected Collection getClassPath()

in src/main/java/org/apache/maven/plugins/jdeps/JDKInternalsMojo.java [53:64]


    protected Collection<Path> getClassPath()
        throws DependencyResolutionRequiredException
    {
        Set<Path> classPath = new LinkedHashSet<>( getProject().getCompileClasspathElements().size() );

        for ( String elm : getProject().getCompileClasspathElements() )
        {
            classPath.add( Paths.get( elm ) );
        }

        return classPath;
    }