o Fixing a bug where the resolve dependencies flag was ignored.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163233 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Trygve Laugstol 2004-11-05 20:31:14 +00:00
parent f32e88a2d5
commit 8d339b01b8
1 changed files with 11 additions and 11 deletions

View File

@ -95,7 +95,7 @@ public class DefaultMavenProjectBuilder
public MavenProject build( File projectDescriptor, boolean resolveDependencies )
throws ProjectBuildingException
{
return build( null, projectDescriptor, false );
return build( null, projectDescriptor, resolveDependencies );
}
/** @todo can we move the super model reading to the initialize method? what about the user/site? Is it reused?