Problem in merging artifact containers, where one container specified a default type value (jar) and the other did not. They were treated as different types. Fixed this.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@718375 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Britton Isbell 2008-11-17 20:59:05 +00:00
parent 3fb0c8514f
commit ed4083c93f
1 changed files with 2 additions and 2 deletions

View File

@ -146,12 +146,12 @@ public final class ArtifactModelContainerFactory
if ( type == null )
{
type = "";
type = "jar";
}
if ( scope == null )
{
scope = "";
scope = "compile";
}
}