Package org.sonatype.aether.artifact

Examples of org.sonatype.aether.artifact.ArtifactType


        return relocation;
    }

    private Dependency convert( org.apache.maven.model.Dependency dependency, ArtifactTypeRegistry stereotypes )
    {
        ArtifactType stereotype = stereotypes.get( dependency.getType() );
        if ( stereotype == null )
        {
            stereotype = new DefaultArtifactType( dependency.getType() );
        }
View Full Code Here


        types = new HashMap<String, ArtifactType>();
    }

    public ArtifactType get( String typeId )
    {
        ArtifactType type = types.get( typeId );

        if ( type == null )
        {
            type = delegate.get( typeId );
            types.put( typeId, type );
View Full Code Here

        return this;
    }

    public ArtifactType get( String stereotypeId )
    {
        ArtifactType stereotype = stereotypes.get( stereotypeId );

        return stereotype;
    }
View Full Code Here

TOP

Related Classes of org.sonatype.aether.artifact.ArtifactType

Copyright © 2018 www.massapicom. 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.