mirror of https://github.com/apache/maven.git
Add toString method for dependencies
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162816 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e04ec7ea75
commit
afba825dbb
|
@ -695,6 +695,10 @@
|
|||
{
|
||||
return groupId + ":" + artifactId;
|
||||
}
|
||||
public String toString()
|
||||
{
|
||||
return groupId + "/" + type + "s:" + artifactId + "-" + version;
|
||||
}
|
||||
</code>
|
||||
</codeSegment>
|
||||
</codeSegments>
|
||||
|
|
Loading…
Reference in New Issue