Class UnresolvedArtifacts
- java.lang.Object
-
- org.apache.maven.artifact.resolver.UnresolvedArtifacts
-
public class UnresolvedArtifacts extends java.lang.Object
A simple recording of the Artifacts that could not be resolved for a given resolution request, along with the remote repositories where attempts were made to resolve the artifacts.- Author:
- Jason van Zyl
-
-
Constructor Summary
Constructors Constructor Description UnresolvedArtifacts(org.apache.maven.artifact.Artifact originatingArtifact, java.util.List<org.apache.maven.artifact.Artifact> artifacts, java.util.List<org.apache.maven.artifact.repository.ArtifactRepository> remoteRepositories)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<org.apache.maven.artifact.Artifact>
getArtifacts()
org.apache.maven.artifact.Artifact
getOriginatingArtifact()
java.util.List<org.apache.maven.artifact.repository.ArtifactRepository>
getRemoteRepositories()
-
-
-
Method Detail
-
getOriginatingArtifact
public org.apache.maven.artifact.Artifact getOriginatingArtifact()
-
getArtifacts
public java.util.List<org.apache.maven.artifact.Artifact> getArtifacts()
-
getRemoteRepositories
public java.util.List<org.apache.maven.artifact.repository.ArtifactRepository> getRemoteRepositories()
-
-