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:
Emmanuel Venisse 2004-06-20 12:48:23 +00:00
parent e04ec7ea75
commit afba825dbb
1 changed files with 4 additions and 0 deletions

View File

@ -695,6 +695,10 @@
{
return groupId + ":" + artifactId;
}
public String toString()
{
return groupId + "/" + type + "s:" + artifactId + "-" + version;
}
</code>
</codeSegment>
</codeSegments>