Package org.apache.maven

Source Code of org.apache.maven.MavenArtifactFilterManager

package org.apache.maven;

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*  http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/

import org.apache.maven.artifact.resolver.filter.ArtifactFilter;
import org.apache.maven.artifact.resolver.filter.ExclusionSetFilter;

import java.util.Set;
import java.util.HashSet;

/**
* @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
* @version $Id: MavenArtifactFilterManager.java 781439 2009-06-03 15:39:52Z jdcasey $
* @todo this should probably be a component with some dynamic control of filtering
*/
public class MavenArtifactFilterManager
{
    public static ArtifactFilter createStandardFilter()
    {
        Set artifacts = createBaseArtifactSet();

        artifacts.add( "wagon-file" );
        artifacts.add( "wagon-http-lightweight" );
        artifacts.add( "wagon-webdav" );
        artifacts.add( "wagon-ssh" );
        artifacts.add( "wagon-ssh-external" );
        artifacts.add( "wagon-ssh-common" );
        artifacts.add( "wagon-http-shared" );
        artifacts.add( "wagon-webdav-jackrabbit" );

        return new ExclusionSetFilter( artifacts );
    }

    public static ArtifactFilter createExtensionFilter()
    {
        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 );
    }

    private static Set createBaseArtifactSet()
    {
        // TODO: configure this from bootstrap or scan lib
        Set artifacts = new HashSet();

        artifacts.add( "classworlds" );
        artifacts.add( "jsch" );
//        artifacts.add( "commons-cli" );
        artifacts.add( "doxia-sink-api" );
        artifacts.add( "doxia-logging-api" );
        artifacts.add( "maven-artifact" );
        artifacts.add( "maven-artifact-manager" );
        artifacts.add( "maven-core" );
        artifacts.add( "maven-error-diagnoser" );
        artifacts.add( "maven-model" );
        artifacts.add( "maven-monitor" );
        artifacts.add( "maven-plugin-api" );
        artifacts.add( "maven-plugin-descriptor" );
        artifacts.add( "maven-plugin-parameter-documenter" );
        artifacts.add( "maven-plugin-registry" );
        artifacts.add( "maven-profile" );
        artifacts.add( "maven-project" );
        artifacts.add( "maven-reporting-api" );
        artifacts.add( "maven-repository-metadata" );
        artifacts.add( "maven-settings" );
        artifacts.add( "plexus-container-default" );
        artifacts.add( "plexus-interactivity-api" );
        artifacts.add( "maven-toolchain" );
        artifacts.add( "wagon-provider-api" );

        // drop the component-api - even though we don't use it directly it is included in out container-default
        artifacts.add( "plexus-component-api" );
       
        return artifacts;
    }
}
TOP

Related Classes of org.apache.maven.MavenArtifactFilterManager

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.