o Adding the type to getId() of a pom v4.0.0.

o Changing the artifact list in MavenProject to a Set.


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162845 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Trygve Laugstol 2004-06-27 18:46:52 +00:00
parent d00330c7c2
commit 848a7dd433
1 changed files with 4 additions and 0 deletions

View File

@ -349,11 +349,15 @@
public String getId()
{
StringBuffer id = new StringBuffer();
id.append( getGroupId() );
id.append( ":" );
id.append( getArtifactId() );
id.append( ":" );
id.append( getType() );
id.append( ":" );
id.append( getVersion() );
return id.toString();
}
</code>