Fix: MNG-3392

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@700837 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Britton Isbell 2008-10-01 16:55:35 +00:00
parent 2efd58f1cd
commit a20f8ffee8
1 changed files with 1 additions and 1 deletions

View File

@ -406,13 +406,13 @@ public class DefaultMavenProjectBuilder
{
MavenProject project = new MavenProject( model, artifactFactory, mavenTools, this, config );
validateModel( model, pomFile );
Artifact projectArtifact = artifactFactory.createBuildArtifact( project.getGroupId(), project.getArtifactId(),
project.getVersion(), project.getPackaging() );
project.setArtifact( projectArtifact );
project.setParentFile( parentFile );
validateModel( model, pomFile );
return project;
}