Uses of Interface
org.eclipse.aether.repository.ArtifactRepository
Package
Description
The primary API of the
RepositorySystem
and its functionality.The types and extension points for collecting the transitive dependencies of an artifact and building a dependency
graph.
Internal helper classes for dependency collector.
The definition of various kinds of repositories that host artifacts.
The types supporting the resolution of artifacts and metadata from repositories.
-
Uses of ArtifactRepository in org.eclipse.aether
Modifier and TypeMethodDescriptionRepositoryEvent.getRepository()
Gets the repository involved in the event (if any).Modifier and TypeMethodDescriptionRepositoryEvent.Builder.setRepository
(ArtifactRepository repository) Sets the repository involved in the event. -
Uses of ArtifactRepository in org.eclipse.aether.collection
Modifier and TypeMethodDescriptionVersionFilter.VersionFilterContext.getRepository
(Version version) Gets the repository from which the specified version was resolved. -
Uses of ArtifactRepository in org.eclipse.aether.internal.impl.checksum
Modifier and TypeMethodDescriptionSparseDirectoryTrustedChecksumsSource.doGetTrustedArtifactChecksums
(RepositorySystemSession session, Artifact artifact, ArtifactRepository artifactRepository, List<ChecksumAlgorithmFactory> checksumAlgorithmFactories) SummaryFileTrustedChecksumsSource.doGetTrustedArtifactChecksums
(RepositorySystemSession session, Artifact artifact, ArtifactRepository artifactRepository, List<ChecksumAlgorithmFactory> checksumAlgorithmFactories) -
Uses of ArtifactRepository in org.eclipse.aether.internal.impl.collect
Modifier and TypeMethodDescriptionprotected static List
<RemoteRepository> DependencyCollectorDelegate.getRemoteRepositories
(ArtifactRepository repository, List<RemoteRepository> repositories) -
Uses of ArtifactRepository in org.eclipse.aether.repository
Modifier and TypeClassDescriptionfinal class
A repository on the local file system used to cache contents of remote repositories and to store locally installed artifacts.final class
A repository on a remote server.final class
A repository backed by an IDE workspace, the output of a build session or similar ad-hoc collection of artifacts. -
Uses of ArtifactRepository in org.eclipse.aether.resolution
Modifier and TypeFieldDescriptionstatic final ArtifactRepository
ArtifactResult.NO_REPOSITORY
A sentinel object, that is used as key for exceptions that had no related repository during resolution.Modifier and TypeMethodDescriptionArtifactDescriptorResult.getRepository()
Gets the repository from which the descriptor was eventually resolved.ArtifactResult.getRepository()
Gets the repository from which the artifact was eventually resolved.VersionRangeResult.getRepository
(Version version) Gets the repository from which the specified version was resolved.VersionResult.getRepository()
Gets the repository from which the version was eventually resolved.Modifier and TypeMethodDescriptionArtifactResult.getMappedExceptions()
Gets the exceptions that occurred while resolving the artifact.Modifier and TypeMethodDescriptionArtifactResult.addException
(ArtifactRepository repository, Exception exception) Records the specified exception while resolving the artifact.ArtifactDescriptorResult.setRepository
(ArtifactRepository repository) Sets the repository from which the descriptor was resolved.ArtifactResult.setRepository
(ArtifactRepository repository) Sets the repository from which the artifact was resolved.VersionRangeResult.setRepository
(Version version, ArtifactRepository repository) Records the repository from which the specified version was resolvedVersionResult.setRepository
(ArtifactRepository repository) Sets the repository from which the version was resolved. -
Uses of ArtifactRepository in org.eclipse.aether.spi.checksums
Modifier and TypeMethodDescriptionvoid
TrustedChecksumsSource.Writer.addTrustedArtifactChecksums
(Artifact artifact, ArtifactRepository artifactRepository, List<ChecksumAlgorithmFactory> checksumAlgorithmFactories, Map<String, String> trustedArtifactChecksums) Performs whatever implementation requires to "set" (write/add/append) given map of trusted checksums.TrustedChecksumsSource.getTrustedArtifactChecksums
(RepositorySystemSession session, Artifact artifact, ArtifactRepository artifactRepository, List<ChecksumAlgorithmFactory> checksumAlgorithmFactories) May return the trusted checksums (for given artifact) from trusted source, ornull
if not enabled.