[MNG-7783] Profile source point to file instead of to module (#1110)

This commit is contained in:
Guillaume Nodet 2023-05-17 07:15:44 +02:00 committed by GitHub
parent 2bbdd9788e
commit 7fe9499361
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -81,4 +81,9 @@ public class ArtifactModelSource extends FileSource implements ModelSource {
&& Objects.equals(groupId, other.groupId)
&& Objects.equals(version, other.version);
}
@Override
public String toString() {
return groupId + ":" + artifactId + ":" + version;
}
}