src/main/java/org/apache/maven/resolver/internal/ant/types/Dependency.java [119:129]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void setGroupId(String groupId) {
        checkAttributesAllowed();
        if (this.groupId != null) {
            throw ambiguousCoords();
        }
        this.groupId = groupId;
    }

    public String getArtifactId() {
        if (isReference()) {
            return getRef().getArtifactId();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/maven/resolver/internal/ant/types/Exclusion.java [73:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void setGroupId(String groupId) {
        checkAttributesAllowed();
        if (this.groupId != null) {
            throw ambiguousCoords();
        }
        this.groupId = groupId;
    }

    public String getArtifactId() {
        if (isReference()) {
            return getRef().getArtifactId();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



