in src/main/java/org/apache/sling/maven/projectsupport/bundlelist/BaseStartLevel.java [58:62]
private boolean isSameArtifact(Bundle bundle1, Bundle bundle2, boolean compareVersions) {
boolean result = compareVersions ? bundle1.getVersion().equals(bundle2) : true;
return result && bundle1.getArtifactId().equals(bundle2.getArtifactId())
&& bundle1.getGroupId().equals(bundle2.getGroupId()) && bundle1.getType().equals(bundle2.getType());
}