Package org.apache.archiva.common.utils

Examples of org.apache.archiva.common.utils.Slf4JPlexusLogger


    public void buildDependencyTree( List<String> repositoryIds, String groupId, String artifactId, String version,
                                     DependencyNodeVisitor nodeVisitor )
        throws DependencyTreeBuilderException
    {
        DependencyTreeResolutionListener listener =
            new DependencyTreeResolutionListener( new Slf4JPlexusLogger( getClass() ) );

        Artifact projectArtifact = factory.createProjectArtifact( groupId, artifactId, version );
        ManagedRepositoryConfiguration repository = findArtifactInRepositories( repositoryIds, projectArtifact );

        if ( repository == null )
View Full Code Here

TOP

Related Classes of org.apache.archiva.common.utils.Slf4JPlexusLogger

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.