o Restored support for maven.repo.local

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@795023 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-07-17 09:53:11 +00:00
parent a5be13b93b
commit bb5c402250
1 changed files with 7 additions and 0 deletions

View File

@ -297,6 +297,13 @@ public final class CLIRequestUtils
request.setMakeBehavior( MavenExecutionRequest.REACTOR_MAKE_BOTH );
}
String localRepoProperty = request.getProperties().getProperty( MavenCli.LOCAL_REPO_PROPERTY );
if ( localRepoProperty != null )
{
request.setLocalRepositoryPath( localRepoProperty );
}
return request;
}