public boolean equals()

in src/main/java/org/apache/maven/plugin/compiler/DependencyCoordinate.java [97:114]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        DependencyCoordinate other = (DependencyCoordinate) obj;
        return 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);
    }