throw new ConfigException(L.l("url: resolver requires an artifact-pattern or a path"));
if (getArtifactPattern() == null && _path != null) {
String pattern = _path.getURL() + "/[organisation]/[module]/[artifact]-[revision].[ext]";
setArtifactPattern(new IvyPattern(pattern));
}
if (getIvyPattern() == null && _path != null) {
String pattern = _path.getURL() + "/[organisation]/[module]/ivy-[revision].xml";
setIvyPattern(new IvyPattern(pattern));
}
}