Uses of Class
org.eclipse.aether.repository.RemoteRepository
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.
The types supporting the publishing of artifacts to a remote repository.
The representation of a dependency graph by means of connected dependency nodes.
The definition of various kinds of repositories that host artifacts.
The types supporting the resolution of artifacts and metadata from repositories.
A listener and various exception types dealing with the transfer of a resource between the local system and a remote
repository.
-
Uses of RemoteRepository in org.eclipse.aether
Modifier and TypeMethodDescriptionRepositorySystem.newDeploymentRepository
(RepositorySystemSession session, RemoteRepository repository) Forms a remote repository suitable for artifact deployment by applying the session's authentication selector and similar network configuration to the given repository prototype.Modifier and TypeMethodDescriptionRepositorySystem.newResolutionRepositories
(RepositorySystemSession session, List<RemoteRepository> repositories) Forms remote repositories suitable for artifact resolution by applying the session's authentication selector and similar network configuration to the given repository prototypes.Modifier and TypeMethodDescriptionRepositorySystem.newDeploymentRepository
(RepositorySystemSession session, RemoteRepository repository) Forms a remote repository suitable for artifact deployment by applying the session's authentication selector and similar network configuration to the given repository prototype.Modifier and TypeMethodDescriptionRepositorySystem.newResolutionRepositories
(RepositorySystemSession session, List<RemoteRepository> repositories) Forms remote repositories suitable for artifact resolution by applying the session's authentication selector and similar network configuration to the given repository prototypes. -
Uses of RemoteRepository in org.eclipse.aether.collection
Modifier and TypeMethodDescriptionCollectRequest.getRepositories()
Gets the repositories to use for the collection.VersionFilter.VersionFilterContext.getRepositories()
Gets the remote repositories from which the versions were resolved.Modifier and TypeMethodDescriptionCollectRequest.addRepository
(RemoteRepository repository) Adds the specified repository for collection.Modifier and TypeMethodDescriptionCollectRequest.setRepositories
(List<RemoteRepository> repositories) Sets the repositories to use for the collection.ModifierConstructorDescriptionCollectRequest
(Dependency root, List<RemoteRepository> repositories) Creates a request with the specified properties. -
Uses of RemoteRepository in org.eclipse.aether.deployment
Modifier and TypeMethodDescriptionDeployRequest.getRepository()
Gets the repository to deploy to.Modifier and TypeMethodDescriptionDeployRequest.setRepository
(RemoteRepository repository) Sets the repository to deploy to. -
Uses of RemoteRepository in org.eclipse.aether.graph
Modifier and TypeMethodDescriptionDefaultDependencyNode.getRepositories()
DependencyNode.getRepositories()
Gets the remote repositories from which this node's artifact shall be resolved.Modifier and TypeMethodDescriptionvoid
DefaultDependencyNode.setRepositories
(List<RemoteRepository> repositories) Sets the remote repositories from which this node's artifact shall be resolved. -
Uses of RemoteRepository in org.eclipse.aether.repository
Modifier and TypeMethodDescriptionRemoteRepository.Builder.build()
Builds a new remote repository from the current values of this builder.MirrorSelector.getMirror
(RemoteRepository repository) Selects a mirror for the specified repository.AuthenticationContext.getRepository()
Gets the repository requiring authentication.AuthenticationDigest.getRepository()
Gets the repository requiring authentication.LocalArtifactRegistration.getRepository()
Gets the remote repository from which the artifact was resolved.LocalArtifactResult.getRepository()
Gets the (first) remote repository from which the artifact was cached (if any).LocalMetadataRegistration.getRepository()
Gets the remote repository from which the metadata was resolved.LocalMetadataRequest.getRepository()
Gets the remote repository to use as source of the metadata.Modifier and TypeMethodDescriptionRemoteRepository.getMirroredRepositories()
Gets the repositories that this repository serves as a mirror for.LocalArtifactRequest.getRepositories()
Gets the remote repositories to consider as sources of the artifact.Modifier and TypeMethodDescriptionRemoteRepository.Builder.addMirroredRepository
(RemoteRepository mirroredRepository) Adds the specified repository to the list of repositories being mirrored by the repository.static AuthenticationContext
AuthenticationContext.forProxy
(RepositorySystemSession session, RemoteRepository repository) Gets an authentication context for the proxy of the specified repository.static String
AuthenticationDigest.forProxy
(RepositorySystemSession session, RemoteRepository repository) Gets the fingerprint for the authentication of the specified repository's proxy.static AuthenticationContext
AuthenticationContext.forRepository
(RepositorySystemSession session, RemoteRepository repository) Gets an authentication context for the specified repository.static String
AuthenticationDigest.forRepository
(RepositorySystemSession session, RemoteRepository repository) Gets the fingerprint for the authentication of the specified repository.AuthenticationSelector.getAuthentication
(RemoteRepository repository) Selects authentication for the specified remote repository.MirrorSelector.getMirror
(RemoteRepository repository) Selects a mirror for the specified repository.LocalRepositoryManager.getPathForRemoteArtifact
(Artifact artifact, RemoteRepository repository, String context) Gets the relative path for an artifact cached from a remote repository.LocalRepositoryManager.getPathForRemoteMetadata
(Metadata metadata, RemoteRepository repository, String context) Gets the relative path for metadata cached from a remote repository.ProxySelector.getProxy
(RemoteRepository repository) Selects a proxy for the specified remote repository.LocalArtifactRegistration.setRepository
(RemoteRepository repository) Sets the remote repository from which the artifact was resolved.LocalArtifactResult.setRepository
(RemoteRepository repository) Sets the (first) remote repository from which the artifact was cached.LocalMetadataRegistration.setRepository
(RemoteRepository repository) Sets the remote repository from which the metadata was resolved.LocalMetadataRequest.setRepository
(RemoteRepository repository) Sets the remote repository to use as sources of the metadata.Modifier and TypeMethodDescriptionRemoteRepository.Builder.setMirroredRepositories
(List<RemoteRepository> mirroredRepositories) Sets the repositories being mirrored by the repository.LocalArtifactRequest.setRepositories
(List<RemoteRepository> repositories) Sets the remote repositories to consider as sources of the artifact.ModifierConstructorDescriptionBuilder
(RemoteRepository prototype) Creates a new repository builder which uses the specified remote repository as a prototype for the new one.LocalArtifactRegistration
(Artifact artifact, RemoteRepository repository, Collection<String> contexts) Creates a registration request for the specified artifact.LocalMetadataRegistration
(Metadata metadata, RemoteRepository repository, Collection<String> contexts) Creates a registration request for the specified metadata.LocalMetadataRequest
(Metadata metadata, RemoteRepository repository, String context) Creates a query with the specified properties.ModifierConstructorDescriptionLocalArtifactRequest
(Artifact artifact, List<RemoteRepository> repositories, String context) Creates a query with the specified properties. -
Uses of RemoteRepository in org.eclipse.aether.resolution
Modifier and TypeMethodDescriptionMetadataRequest.getRepository()
Gets the repository from which the metadata should be resolved.ResolutionErrorPolicyRequest.getRepository()
Gets the remote repository from which the resolution of the artifact/metadata is attempted.Modifier and TypeMethodDescriptionArtifactDescriptorRequest.getRepositories()
Gets the repositories to resolve the descriptor from.ArtifactDescriptorResult.getRepositories()
Gets the remote repositories listed in the artifact descriptor.ArtifactRequest.getRepositories()
Gets the repositories to resolve the artifact from.VersionRangeRequest.getRepositories()
Gets the repositories to resolve the version range from.VersionRequest.getRepositories()
Gets the repositories to resolve the version from.Modifier and TypeMethodDescriptionArtifactDescriptorRequest.addRepository
(RemoteRepository repository) Adds the specified repository for the resolution of the artifact descriptor.ArtifactDescriptorResult.addRepository
(RemoteRepository repository) Adds the specified remote repository.ArtifactRequest.addRepository
(RemoteRepository repository) Adds the specified repository for the resolution.VersionRangeRequest.addRepository
(RemoteRepository repository) Adds the specified repository for the resolution.VersionRequest.addRepository
(RemoteRepository repository) Adds the specified repository for the resolution.MetadataRequest.setRepository
(RemoteRepository repository) Sets the repository from which the metadata should be resolved.ResolutionErrorPolicyRequest.setRepository
(RemoteRepository repository) Sets the remote repository from which the resolution of the artifact/metadata is attempted.Modifier and TypeMethodDescriptionArtifactDescriptorRequest.setRepositories
(List<RemoteRepository> repositories) Sets the repositories to resolve the descriptor from.ArtifactDescriptorResult.setRepositories
(List<RemoteRepository> repositories) Sets the remote repositories listed in the artifact descriptor.ArtifactRequest.setRepositories
(List<RemoteRepository> repositories) Sets the repositories to resolve the artifact from.VersionRangeRequest.setRepositories
(List<RemoteRepository> repositories) Sets the repositories to resolve the version range from.VersionRequest.setRepositories
(List<RemoteRepository> repositories) Sets the repositories to resolve the version from.ModifierConstructorDescriptionMetadataRequest
(Metadata metadata, RemoteRepository repository, String context) Creates a request with the specified properties.ResolutionErrorPolicyRequest
(T item, RemoteRepository repository) Creates a request for the specified artifact/metadata and remote repository.ModifierConstructorDescriptionArtifactDescriptorRequest
(Artifact artifact, List<RemoteRepository> repositories, String context) Creates a request with the specified properties.ArtifactRequest
(Artifact artifact, List<RemoteRepository> repositories, String context) Creates a request with the specified properties.VersionRangeRequest
(Artifact artifact, List<RemoteRepository> repositories, String context) Creates a request with the specified properties.VersionRequest
(Artifact artifact, List<RemoteRepository> repositories, String context) Creates a request with the specified properties. -
Uses of RemoteRepository in org.eclipse.aether.transfer
Modifier and TypeMethodDescriptionArtifactTransferException.getRepository()
Gets the remote repository involved in the transfer.MetadataTransferException.getRepository()
Gets the remote repository involved in the transfer.NoRepositoryConnectorException.getRepository()
Gets the remote repository whose content type is not supported.NoRepositoryLayoutException.getRepository()
Gets the remote repository whose layout is not supported.NoTransporterException.getRepository()
Gets the remote repository whose transport protocol is not supported.RepositoryOfflineException.getRepository()
Gets the remote repository that could not be accessed due to offline mode.ModifierConstructorDescriptionArtifactFilteredOutException
(Artifact artifact, RemoteRepository repository, String message) Creates a new exception with the specified artifact, repository and detail message.ArtifactNotFoundException
(Artifact artifact, RemoteRepository repository) Creates a new exception with the specified artifact and repository.ArtifactNotFoundException
(Artifact artifact, RemoteRepository repository, String message) Creates a new exception with the specified artifact, repository and detail message.ArtifactNotFoundException
(Artifact artifact, RemoteRepository repository, String message, boolean fromCache) Creates a new exception with the specified artifact, repository and detail message.ArtifactNotFoundException
(Artifact artifact, RemoteRepository repository, String message, Throwable cause) Creates a new exception with the specified artifact, repository, detail message and cause.ArtifactTransferException
(Artifact artifact, RemoteRepository repository, String message) Creates a new exception with the specified artifact, repository and detail message.ArtifactTransferException
(Artifact artifact, RemoteRepository repository, String message, boolean fromCache) Creates a new exception with the specified artifact, repository and detail message.ArtifactTransferException
(Artifact artifact, RemoteRepository repository, String message, Throwable cause) Creates a new exception with the specified artifact, repository, detail message and cause.ArtifactTransferException
(Artifact artifact, RemoteRepository repository, Throwable cause) Creates a new exception with the specified artifact, repository and cause.MetadataNotFoundException
(Metadata metadata, RemoteRepository repository) Creates a new exception with the specified metadata and repository.MetadataNotFoundException
(Metadata metadata, RemoteRepository repository, String message) Creates a new exception with the specified metadata, repository and detail message.MetadataNotFoundException
(Metadata metadata, RemoteRepository repository, String message, boolean fromCache) Creates a new exception with the specified metadata, repository and detail message.MetadataNotFoundException
(Metadata metadata, RemoteRepository repository, String message, Throwable cause) Creates a new exception with the specified metadata, repository, detail message and cause.MetadataTransferException
(Metadata metadata, RemoteRepository repository, String message) Creates a new exception with the specified metadata, repository and detail message.MetadataTransferException
(Metadata metadata, RemoteRepository repository, String message, boolean fromCache) Creates a new exception with the specified metadata, repository and detail message.MetadataTransferException
(Metadata metadata, RemoteRepository repository, String message, Throwable cause) Creates a new exception with the specified metadata, repository, detail message and cause.MetadataTransferException
(Metadata metadata, RemoteRepository repository, Throwable cause) Creates a new exception with the specified metadata, repository and cause.NoRepositoryConnectorException
(RemoteRepository repository) Creates a new exception with the specified repository.NoRepositoryConnectorException
(RemoteRepository repository, String message) Creates a new exception with the specified repository and detail message.NoRepositoryConnectorException
(RemoteRepository repository, String message, Throwable cause) Creates a new exception with the specified repository, detail message and cause.NoRepositoryConnectorException
(RemoteRepository repository, Throwable cause) Creates a new exception with the specified repository and cause.NoRepositoryLayoutException
(RemoteRepository repository) Creates a new exception with the specified repository.NoRepositoryLayoutException
(RemoteRepository repository, String message) Creates a new exception with the specified repository and detail message.NoRepositoryLayoutException
(RemoteRepository repository, String message, Throwable cause) Creates a new exception with the specified repository, detail message and cause.NoRepositoryLayoutException
(RemoteRepository repository, Throwable cause) Creates a new exception with the specified repository and cause.NoTransporterException
(RemoteRepository repository) Creates a new exception with the specified repository.NoTransporterException
(RemoteRepository repository, String message) Creates a new exception with the specified repository and detail message.NoTransporterException
(RemoteRepository repository, String message, Throwable cause) Creates a new exception with the specified repository, detail message and cause.NoTransporterException
(RemoteRepository repository, Throwable cause) Creates a new exception with the specified repository and cause.RepositoryOfflineException
(RemoteRepository repository) Creates a new exception with the specified repository.RepositoryOfflineException
(RemoteRepository repository, String message) Creates a new exception with the specified repository and detail message.