[MNG-4360] [regression] wagon-webdav-jackrabbit doesn't work with Maven 3.x

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@815413 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-09-15 17:43:36 +00:00
parent 2dc6a5313c
commit 6b2adee21f
1 changed files with 7 additions and 3 deletions

View File

@ -76,11 +76,15 @@ public class DefaultArtifactFilterManager
artifacts.add( "plexus-component-api" );
artifacts.add( "plexus-container-default" );
artifacts.add( "wagon-provider-api" );
artifacts.add( "wagon-file" );
artifacts.add( "wagon-http-lightweight" );
artifacts.add( "wagon-http-shared" );
artifacts.add( "wagon-manager" );
/*
* NOTE: Don't exclude the wagons or any of their dependencies (apart from the wagon API). This would otherwise
* provoke linkage errors for wagons contributed by build extensions. We also don't need to exclude the wagons
* from plugins. Plugins that use wagons directly and declare the corresponding dependency will simply use a
* wagon from their plugin realm.
*/
DEFAULT_EXCLUSIONS = artifacts;
}