mirror of https://github.com/apache/maven.git
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:
parent
6dedba51d9
commit
737d36b126
|
@ -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" );
|
||||
|
||||
|
|
|
@ -538,10 +538,8 @@ public class DefaultMaven
|
|||
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 );
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue