Package org.apache.maven.repository
Interface RepositorySystem
- All Known Implementing Classes:
LegacyRepositorySystem
public interface RepositorySystem
- Since:
- 3.0-alpha
- Author:
- Jason van Zyl
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuildArtifactRepository
(Repository repository) createArtifact
(String groupId, String artifactId, String version, String packaging) createArtifactRepository
(String id, String url, ArtifactRepositoryLayout repositoryLayout, ArtifactRepositoryPolicy snapshots, ArtifactRepositoryPolicy releases) createArtifactWithClassifier
(String groupId, String artifactId, String version, String type, String classifier) createDependencyArtifact
(Dependency dependency) createLocalRepository
(File localRepository) createPluginArtifact
(Plugin plugin) createProjectArtifact
(String groupId, String artifactId, String version) getEffectiveRepositories
(List<ArtifactRepository> repositories) Calculates the effective repositories for the given input repositories which are assumed to be already mirrored (if applicable).getMirror
(ArtifactRepository repository, List<Mirror> mirrors) Determines the mirror for the specified repository.void
injectAuthentication
(List<ArtifactRepository> repositories, List<Server> servers) Injects the authentication information into the specified repositories.void
injectAuthentication
(org.eclipse.aether.RepositorySystemSession session, List<ArtifactRepository> repositories) void
injectMirror
(List<ArtifactRepository> repositories, List<Mirror> mirrors) Injects the mirroring information into the specified repositories.void
injectMirror
(org.eclipse.aether.RepositorySystemSession session, List<ArtifactRepository> repositories) void
injectProxy
(List<ArtifactRepository> repositories, List<Proxy> proxies) Injects the proxy information into the specified repositories.void
injectProxy
(org.eclipse.aether.RepositorySystemSession session, List<ArtifactRepository> repositories) void
publish
(ArtifactRepository repository, File source, String remotePath, ArtifactTransferListener transferListener) resolve
(ArtifactResolutionRequest request) void
retrieve
(ArtifactRepository repository, File destination, String remotePath, ArtifactTransferListener transferListener)
-
Field Details
-
DEFAULT_LOCAL_REPO_ID
- See Also:
-
userHome
-
userMavenConfigurationHome
-
defaultUserLocalRepository
-
DEFAULT_REMOTE_REPO_ID
- See Also:
-
DEFAULT_REMOTE_REPO_URL
- See Also:
-
-
Method Details
-
createArtifact
-
createArtifact
-
createProjectArtifact
-
createArtifactWithClassifier
-
createPluginArtifact
-
createDependencyArtifact
-
buildArtifactRepository
- Throws:
InvalidRepositoryException
-
createDefaultRemoteRepository
- Throws:
InvalidRepositoryException
-
createDefaultLocalRepository
- Throws:
InvalidRepositoryException
-
createLocalRepository
- Throws:
InvalidRepositoryException
-
createArtifactRepository
ArtifactRepository createArtifactRepository(String id, String url, ArtifactRepositoryLayout repositoryLayout, ArtifactRepositoryPolicy snapshots, ArtifactRepositoryPolicy releases) -
getEffectiveRepositories
Calculates the effective repositories for the given input repositories which are assumed to be already mirrored (if applicable). This process will essentially remove duplicate repositories by merging them into one equivalent repository. It is worth to point out that merging does not simply choose one of the input repositories and discards the others but actually combines their possibly different policies.- Parameters:
repositories
- The original repositories, may benull
.- Returns:
- The effective repositories or
null
if the input wasnull
.
-
getMirror
Determines the mirror for the specified repository.- Parameters:
repository
- The repository to determine the mirror for, must not benull
.mirrors
- The available mirrors, may benull
.- Returns:
- The mirror specification for the repository or
null
if no mirror matched.
-
injectMirror
Injects the mirroring information into the specified repositories. For each repository that is matched by a mirror, its URL and ID will be updated to match the values from the mirror specification. Repositories without a matching mirror will pass through unchanged. Note: This method must be called beforeinjectAuthentication(List, List)
or the repositories will end up with the wrong credentials.- Parameters:
repositories
- The repositories into which to inject the mirror information, may benull
.mirrors
- The available mirrors, may benull
.
-
injectProxy
Injects the proxy information into the specified repositories. For each repository that is matched by a proxy, its proxy data will be set accordingly. Repositories without a matching proxy will have their proxy cleared. Note: This method must be called afterinjectMirror(List, List)
or the repositories will end up with the wrong proxies.- Parameters:
repositories
- The repositories into which to inject the proxy information, may benull
.proxies
- The available proxies, may benull
.
-
injectAuthentication
Injects the authentication information into the specified repositories. For each repository that is matched by a server, its credentials will be updated to match the values from the server specification. Repositories without a matching server will have their credentials cleared. Note: This method must be called afterinjectMirror(List, List)
or the repositories will end up with the wrong credentials.- Parameters:
repositories
- The repositories into which to inject the authentication information, may benull
.servers
- The available servers, may benull
.
-
injectMirror
void injectMirror(org.eclipse.aether.RepositorySystemSession session, List<ArtifactRepository> repositories) -
injectProxy
void injectProxy(org.eclipse.aether.RepositorySystemSession session, List<ArtifactRepository> repositories) -
injectAuthentication
void injectAuthentication(org.eclipse.aether.RepositorySystemSession session, List<ArtifactRepository> repositories) -
resolve
-
publish
void publish(ArtifactRepository repository, File source, String remotePath, ArtifactTransferListener transferListener) throws ArtifactTransferFailedException - Throws:
ArtifactTransferFailedException
-
retrieve
void retrieve(ArtifactRepository repository, File destination, String remotePath, ArtifactTransferListener transferListener) throws ArtifactTransferFailedException, ArtifactDoesNotExistException
-