Codebase list maven-repo-helper / ba367a0
Added the classifier to the string representation of a Dependency Emmanuel Bourg 3 years ago
2 changed file(s) with 8 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
0 maven-repo-helper (1.9.5) UNRELEASED; urgency=medium
1
2 * Team upload.
3 * Added the classifier to the string representation of a Dependency
4
5 -- Emmanuel Bourg <ebourg@apache.org> Wed, 10 Feb 2021 11:16:47 +0100
6
07 maven-repo-helper (1.9.4) unstable; urgency=medium
18
29 [ Emmanuel Bourg ]
268268 }
269269
270270 public String toString() {
271 return groupId + ":" + artifactId + ":" + type + ":" + version;
271 return groupId + ":" + artifactId + ":" + type + ":" + version + (!"".equals(classifier) ? ":" + classifier : "");
272272 }
273273
274274 public int compareTo(Dependency dependency) {