public boolean matches()

in src/main/java/org/apache/maven/plugins/clean/Selector.java [377:381]


    public boolean matches(Path path) {
        path = baseDirectory.relativize(path);
        return (includes.length == 0 || isMatched(path, includes))
                && (excludes.length == 0 || !isMatched(path, excludes));
    }