9596979899100101
* @deprecated Use this class as a component instead, and then use getArtifactFilter(). */ public static ArtifactFilter createStandardFilter() { // TODO: configure this from bootstrap or scan lib return new ExclusionSetFilter( DEFAULT_EXCLUSIONS ); }
112113114115116117118
for ( ArtifactFilterManagerDelegate delegate : getDelegates() ) { delegate.addExcludes( excludes ); } return new ExclusionSetFilter( excludes ); }
129130131132133134135
for ( ArtifactFilterManagerDelegate delegate : getDelegates() ) { delegate.addCoreExcludes( excludes ); } return new ExclusionSetFilter( excludes ); }
40414243444546
artifacts.add( "wagon-http-lightweight" ); artifacts.add( "wagon-webdav" ); artifacts.add( "wagon-ssh" ); artifacts.add( "wagon-ssh-external" ); return new ExclusionSetFilter( artifacts ); }
50515253545556
Set artifacts = createBaseArtifactSet(); // It should be safe to include wagon implementations, and since this is used by the extension manager they would // get filtered out otherwise return new ExclusionSetFilter( artifacts ); }
100101102103104105106
117118119120121122123
127128129130131132133
* * @see org.apache.maven.ArtifactFilterManager#getExtensionDependencyFilter() */ public ArtifactFilter getCoreArtifactFilter() { return new ExclusionSetFilter( getCoreArtifactExcludes() ); }
43444546474849
artifacts.add( "wagon-ssh-external" ); artifacts.add( "wagon-ssh-common" ); artifacts.add( "wagon-http-shared" ); artifacts.add( "wagon-webdav-jackrabbit" ); return new ExclusionSetFilter( artifacts ); }
53545556575859