mirror of https://github.com/apache/maven.git
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:
parent
d00330c7c2
commit
848a7dd433
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue