in src/main/java/org/apache/sling/tooling/lc/aether/ArtifactKey.java [91:97]
public int compareTo(ArtifactKey o) {
ArtifactId us = new ArtifactId(groupId, artifactId, "0.0.0", classifier, type);
ArtifactId them = new ArtifactId(o.groupId, o.artifactId, "0.0.0", o.classifier, o.type);
return us.compareTo(them);
}