protected Collection getClassPath()

in src/main/java/org/apache/maven/plugins/jdeprscan/TestJDeprScanMojo.java [53:64]


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