return new URL[]{root};
}
public boolean includes(URL root, String resource) {
if (matcher == null) {
matcher = new PathMatcher(
evaluator.getProperty(ProjectProperties.INCLUDES),
evaluator.getProperty(ProjectProperties.EXCLUDES),
new File(URI.create(root.toExternalForm())));
}
return matcher.matches(resource, true);