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-provider-api" );
|
||||||
artifacts.add( "wagon-file" );
|
artifacts.add( "wagon-file" );
|
||||||
artifacts.add( "wagon-http-lightweight" );
|
artifacts.add( "wagon-http-lightweight" );
|
||||||
|
artifacts.add( "wagon-manager" );
|
||||||
artifacts.add( "wagon-ssh" );
|
artifacts.add( "wagon-ssh" );
|
||||||
artifacts.add( "wagon-ssh-external" );
|
artifacts.add( "wagon-ssh-external" );
|
||||||
|
|
||||||
|
|
|
@ -539,9 +539,7 @@ public class DefaultMaven
|
||||||
ReactorManager rpm,
|
ReactorManager rpm,
|
||||||
EventDispatcher dispatcher )
|
EventDispatcher dispatcher )
|
||||||
{
|
{
|
||||||
return new MavenSession( container, request.getSettings(), request.getLocalRepository(), dispatcher, rpm,
|
return new MavenSession( container, request, dispatcher, rpm );
|
||||||
request.getGoals(), request.getBaseDirectory(), request.getProperties(),
|
|
||||||
request.getStartTime() );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue