Package org.apache.maven.archiva.common.artifact.builder

Examples of org.apache.maven.archiva.common.artifact.builder.LegacyLayoutArtifactBuilder


    public boolean init( ArtifactRepository repository )
    {
        this.artifactBuilders.clear();
        this.artifactBuilders.put( "default", new DefaultLayoutArtifactBuilder( artifactFactory ) );
        this.artifactBuilders.put( "legacy", new LegacyLayoutArtifactBuilder( artifactFactory ) );

        if ( repository.getLayout() instanceof LegacyRepositoryLayout )
        {
            this.layoutId = "legacy";
        }
View Full Code Here

TOP

Related Classes of org.apache.maven.archiva.common.artifact.builder.LegacyLayoutArtifactBuilder

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.