org.apache.maven.plugin.internal
Class DefaultPluginDependenciesResolver
java.lang.Object
   org.apache.maven.plugin.internal.DefaultPluginDependenciesResolver
org.apache.maven.plugin.internal.DefaultPluginDependenciesResolver
- All Implemented Interfaces: 
- PluginDependenciesResolver
- @Component(role=PluginDependenciesResolver.class)
public class DefaultPluginDependenciesResolver 
- extends Object- implements PluginDependenciesResolver
Assists in resolving the dependencies of a plugin. Warning: This is an internal utility class that
 is only public for technical reasons, it is not part of the public API. In particular, this class can be changed or
 deleted without prior notice.
- Since:
- 3.0
- Author:
- Benjamin Bentmann
 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
DefaultPluginDependenciesResolver
public DefaultPluginDependenciesResolver()
resolve
public Artifact resolve(Plugin plugin,
                        List<RemoteRepository> repositories,
                        RepositorySystemSession session)
                 throws PluginResolutionException
- Description copied from interface: PluginDependenciesResolver
- Resolves the main artifact of the specified plugin.
 
- 
- Specified by:
- resolvein interface- PluginDependenciesResolver
 
- 
- Parameters:
- plugin- The plugin for which to resolve the main artifact, must not be- null.
- repositories- The plugin repositories to use for resolving the plugin's main artifact, must not be- null.
- session- The repository session to use for resolving the plugin's main artifact, must not be- null.
- Returns:
- The resolved plugin artifact, never null.
- Throws:
- PluginResolutionException- If the plugin artifact could not be resolved.
 
resolve
public DependencyNode resolve(Plugin plugin,
                              Artifact pluginArtifact,
                              DependencyFilter dependencyFilter,
                              List<RemoteRepository> repositories,
                              RepositorySystemSession session)
                       throws PluginResolutionException
- Description copied from interface: PluginDependenciesResolver
- Resolves the runtime dependencies of the specified plugin.
 
- 
- Specified by:
- resolvein interface- PluginDependenciesResolver
 
- 
- Parameters:
- plugin- The plugin for which to resolve the dependencies, must not be- null.
- pluginArtifact- The plugin's main artifact, may be- null.
- dependencyFilter- A filter to exclude artifacts from resolution (but not collection), may be- null.
- repositories- The plugin repositories to use for resolving the plugin artifacts, must not be- null.
- session- The repository session to use for resolving the plugin artifacts, must not be- null.
- Returns:
- The dependency tree denoting the resolved plugin class path, never null.
- Throws:
- PluginResolutionException- If any dependency could not be resolved.
 
Copyright © 2001-2012 The Apache Software Foundation. All Rights Reserved.