public boolean equals()

in src/main/java/org/apache/maven/plugin/compiler/DependencyCoordinate.java [62:73]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        return obj instanceof DependencyCoordinate other
                && Objects.equals(groupId, other.groupId)
                && Objects.equals(artifactId, other.artifactId)
                && Objects.equals(version, other.version)
                && Objects.equals(classifier, other.classifier)
                && Objects.equals(type, other.type)
                && Objects.equals(exclusions, other.exclusions);
    }