o add wagon-manager to the filter list

o create the session using a request and eliminate pulling out the individual elements for the constructor of the session


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@512549 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2007-02-28 01:27:53 +00:00
parent 6dedba51d9
commit 737d36b126
2 changed files with 3 additions and 4 deletions

View File

@ -63,6 +63,7 @@ public class DefaultArtifactFilterManager implements ArtifactFilterManager
artifacts.add( "wagon-provider-api" );
artifacts.add( "wagon-file" );
artifacts.add( "wagon-http-lightweight" );
artifacts.add( "wagon-manager" );
artifacts.add( "wagon-ssh" );
artifacts.add( "wagon-ssh-external" );

View File

@ -538,10 +538,8 @@ public MavenProject getProject( File pom,
protected MavenSession createSession( MavenExecutionRequest request,
ReactorManager rpm,
EventDispatcher dispatcher )
{
return new MavenSession( container, request.getSettings(), request.getLocalRepository(), dispatcher, rpm,
request.getGoals(), request.getBaseDirectory(), request.getProperties(),
request.getStartTime() );
{
return new MavenSession( container, request, dispatcher, rpm );
}
// ----------------------------------------------------------------------