blob: b6a18c8ab008ab8e5075fdc233d927b4d059443e [file] [log] [blame]
package org.apache.maven.shared.dependency.tree;
/*
* Copyright 2006 The Apache Software Foundation.
*
* Licensed 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.factory.ArtifactFactory;
import org.apache.maven.artifact.metadata.ArtifactMetadataSource;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.artifact.resolver.ArtifactCollector;
import org.apache.maven.project.MavenProject;
/**
* Builds a tree of dependencies for a given Maven project.
*
* @author <a href="mailto:markhobson@gmail.com">Mark Hobson</a>
* @version $Id$
*/
public interface DependencyTreeBuilder
{
// fields -----------------------------------------------------------------
/**
* The plexus role for this component.
*/
String ROLE = DependencyTreeBuilder.class.getName();
// public methods ---------------------------------------------------------
/**
* Builds a tree of dependencies for the specified Maven project.
*
* @param project
* the Maven project
* @param repository
* the artifact repository to resolve against
* @param factory
* the artifact factory to use
* @param metadataSource
* the artifact metadata source to use
* @param collector
* the artifact collector to use
* @return the dependency tree of the specified Maven project
* @throws DependencyTreeBuilderException
* if the dependency tree cannot be resolved
*/
DependencyTree buildDependencyTree( MavenProject project, ArtifactRepository repository, ArtifactFactory factory,
ArtifactMetadataSource metadataSource, ArtifactCollector collector )
throws DependencyTreeBuilderException;
}