in src/main/java/org/apache/maven/resolver/internal/ant/types/Dependency.java [96:110]
public void setRefid(Reference ref) {
if (groupId != null
|| artifactId != null
|| type != null
|| classifier != null
|| version != null
|| scope != null
|| systemPath != null) {
throw tooManyAttributes();
}
if (!exclusions.isEmpty()) {
throw noChildrenAllowed();
}
super.setRefid(ref);
}