Package org.eclipse.aether.repository
Interface WorkspaceReader
-
public interface WorkspaceReader
Manages a repository backed by the IDE workspace, a build session or a similar ad-hoc collection of artifacts.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilefindArtifact(Artifact artifact)Locates the specified artifact.List<String>findVersions(Artifact artifact)Determines all available versions of the specified artifact.WorkspaceRepositorygetRepository()Gets a description of the workspace repository.
-
-
-
Method Detail
-
getRepository
WorkspaceRepository getRepository()
Gets a description of the workspace repository.- Returns:
- The repository description, never
null.
-
findArtifact
File findArtifact(Artifact artifact)
Locates the specified artifact.- Parameters:
artifact- The artifact to locate, must not benull.- Returns:
- The path to the artifact or
nullif the artifact is not available.
-
findVersions
List<String> findVersions(Artifact artifact)
Determines all available versions of the specified artifact.- Parameters:
artifact- The artifact whose versions should be listed, must not benull.- Returns:
- The available versions of the artifact, must not be
null.
-
-