Package | Description |
---|---|
org.eclipse.aether |
The primary API of the
RepositorySystem and its functionality. |
org.eclipse.aether.collection |
The types and extension points for collecting the transitive dependencies of an artifact and building a dependency
graph.
|
org.eclipse.aether.internal.impl |
The various sub components that collectively implement the repository system.
|
org.eclipse.aether.internal.test.util |
Utility classes to ease unit testing.
|
org.eclipse.aether.repository |
The definition of various kinds of repositories that host artifacts.
|
org.eclipse.aether.resolution |
The types supporting the resolution of artifacts and metadata from repositories.
|
Modifier and Type | Field and Description |
---|---|
private ArtifactRepository |
RepositoryEvent.repository |
(package private) ArtifactRepository |
RepositoryEvent.Builder.repository |
Modifier and Type | Method and Description |
---|---|
ArtifactRepository |
RepositoryEvent.getRepository()
Gets the repository involved in the event (if any).
|
Modifier and Type | Method and Description |
---|---|
RepositoryEvent.Builder |
RepositoryEvent.Builder.setRepository(ArtifactRepository repository)
Sets the repository involved in the event.
|
Modifier and Type | Method and Description |
---|---|
ArtifactRepository |
VersionFilter.VersionFilterContext.getRepository(Version version)
Gets the repository from which the specified version was resolved.
|
Modifier and Type | Field and Description |
---|---|
(package private) ArtifactRepository |
DataPool.Constraint.VersionRepo.repo |
Modifier and Type | Method and Description |
---|---|
static ArtifactRepository |
CacheUtils.getRepository(RepositorySystemSession session,
java.util.List<RemoteRepository> repositories,
java.lang.Class<?> repoClass,
java.lang.String repoId)
Deprecated.
|
ArtifactRepository |
DefaultVersionFilterContext.getRepository(Version version) |
Modifier and Type | Method and Description |
---|---|
private void |
DefaultArtifactResolver.artifactResolved(RepositorySystemSession session,
RequestTrace trace,
Artifact artifact,
ArtifactRepository repository,
java.util.List<java.lang.Exception> exceptions) |
private static java.util.List<RemoteRepository> |
DefaultDependencyCollector.getRemoteRepositories(ArtifactRepository repository,
java.util.List<RemoteRepository> repositories) |
private void |
DefaultMetadataResolver.metadataDownloaded(RepositorySystemSession session,
RequestTrace trace,
Metadata metadata,
ArtifactRepository repository,
java.io.File file,
java.lang.Exception exception) |
private void |
DefaultMetadataResolver.metadataDownloading(RepositorySystemSession session,
RequestTrace trace,
Metadata metadata,
ArtifactRepository repository) |
private void |
DefaultMetadataResolver.metadataResolved(RepositorySystemSession session,
RequestTrace trace,
Metadata metadata,
ArtifactRepository repository,
java.lang.Exception exception) |
private void |
DefaultMetadataResolver.metadataResolving(RepositorySystemSession session,
RequestTrace trace,
Metadata metadata,
ArtifactRepository repository) |
Constructor and Description |
---|
VersionRepo(Version version,
ArtifactRepository repo) |
Modifier and Type | Method and Description |
---|---|
ArtifactRepository |
TestVersionFilterContext.getRepository(Version version) |
Modifier and Type | Class and Description |
---|---|
class |
LocalRepository
A repository on the local file system used to cache contents of remote repositories and to store locally installed
artifacts.
|
class |
RemoteRepository
A repository on a remote server.
|
class |
WorkspaceRepository
A repository backed by an IDE workspace, the output of a build session or similar ad-hoc collection of artifacts.
|
Modifier and Type | Field and Description |
---|---|
private ArtifactRepository |
VersionResult.repository |
private ArtifactRepository |
ArtifactDescriptorResult.repository |
private ArtifactRepository |
ArtifactResult.repository |
Modifier and Type | Field and Description |
---|---|
private java.util.Map<Version,ArtifactRepository> |
VersionRangeResult.repositories |
Modifier and Type | Method and Description |
---|---|
ArtifactRepository |
VersionResult.getRepository()
Gets the repository from which the version was eventually resolved.
|
ArtifactRepository |
ArtifactDescriptorResult.getRepository()
Gets the repository from which the descriptor was eventually resolved.
|
ArtifactRepository |
ArtifactResult.getRepository()
Gets the repository from which the artifact was eventually resolved.
|
ArtifactRepository |
VersionRangeResult.getRepository(Version version)
Gets the repository from which the specified version was resolved.
|
Modifier and Type | Method and Description |
---|---|
VersionResult |
VersionResult.setRepository(ArtifactRepository repository)
Sets the repository from which the version was resolved.
|
ArtifactDescriptorResult |
ArtifactDescriptorResult.setRepository(ArtifactRepository repository)
Sets the repository from which the descriptor was resolved.
|
ArtifactResult |
ArtifactResult.setRepository(ArtifactRepository repository)
Sets the repository from which the artifact was resolved.
|
VersionRangeResult |
VersionRangeResult.setRepository(Version version,
ArtifactRepository repository)
Records the repository from which the specified version was resolved
|