org.apache.maven.project.artifact
Class MavenMetadataSource
java.lang.Object
org.codehaus.plexus.logging.AbstractLogEnabled
org.apache.maven.project.artifact.MavenMetadataSource
- All Implemented Interfaces:
- ArtifactMetadataSource, org.codehaus.plexus.logging.LogEnabled
public class MavenMetadataSource
- extends org.codehaus.plexus.logging.AbstractLogEnabled
- implements ArtifactMetadataSource
- Version:
- $Id: MavenMetadataSource.java 521826 2007-03-23 17:50:03Z carlos $
- Author:
- Jason van Zyl, Brett Porter
Field Summary |
static java.lang.String |
ROLE_HINT
|
Methods inherited from class org.codehaus.plexus.logging.AbstractLogEnabled |
enableLogging, getLogger, setupLogger, setupLogger, setupLogger |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ROLE_HINT
public static final java.lang.String ROLE_HINT
- See Also:
- Constant Field Values
MavenMetadataSource
public MavenMetadataSource()
retrieve
public ResolutionGroup retrieve(Artifact artifact,
ArtifactRepository localRepository,
java.util.List remoteRepositories)
throws ArtifactMetadataRetrievalException
- Retrieve the metadata for the project from the repository.
Uses the ProjectBuilder, to enable post-processing and inheritance calculation before retrieving the
associated artifacts.
- Specified by:
retrieve
in interface ArtifactMetadataSource
- Throws:
ArtifactMetadataRetrievalException
createArtifacts
public static java.util.Set createArtifacts(ArtifactFactory artifactFactory,
java.util.List dependencies,
java.lang.String inheritedScope,
ArtifactFilter dependencyFilter,
MavenProject project)
throws InvalidDependencyVersionException
- Returns:
Set
< Artifact
>
- Throws:
InvalidDependencyVersionException
retrieveAvailableVersions
public java.util.List retrieveAvailableVersions(Artifact artifact,
ArtifactRepository localRepository,
java.util.List remoteRepositories)
throws ArtifactMetadataRetrievalException
- Description copied from interface:
ArtifactMetadataSource
- Get a list of available versions for an artifact in the remote repository
- Specified by:
retrieveAvailableVersions
in interface ArtifactMetadataSource
- Parameters:
artifact
- artifact we are interested in. Only groupid
and artifactId
are needed, for instance the following code will work
artifactFactory.createProjectArtifact( "org.apache.maven", "maven", "" )
localRepository
- local repositoryremoteRepositories
- remote repositories, List
$lt; ArtifactRepository
>
- Returns:
List
$lt; ArtifactVersion
>
- Throws:
ArtifactMetadataRetrievalException
- in case of error while retrieving repository metadata from the repository.
Copyright © 2001-2008 Apache Software Foundation. All Rights Reserved.