assertFalse(matcher.matches(Paths.get("org/foo")));
assertTrue(matcher.matches(Paths.get("org/foo/foo/bar.jar")));
assertFalse(matcher.matches(Paths.get("org/foo/foo/bar.xml")));
assertFalse(matcher.matches(Paths.get("org/foo/example/bar.jar")));
assertFalse(matcher.matches(Paths.get("io/fabric8")));
assertFalse(matcher.matches(Paths.get("io/fabric8/foo.jar")));
assertFalse(matcher.matches(Paths.get("io/fabric8/foo.jar")));
}
}