public int compareTo()

in src/main/java/org/apache/sling/tooling/lc/aether/ArtifactKey.java [86:92]


    public int compareTo(ArtifactKey o) {
        
        Artifact us = new Artifact(groupId, artifactId, "0.0.0", classifier, type);
        Artifact them = new Artifact(o.groupId, o.artifactId, "0.0.0", o.classifier, o.type);
        
        return us.compareTo(them);
    }