Package org.eclipse.aether.impl
Interface Deployer
- All Known Implementing Classes:
 DefaultDeployer
public interface Deployer
Publishes artifacts to a remote repository.
- Restriction:
 - This interface is not intended to be extended by clients.
 - Restriction:
 - This interface is not intended to be implemented by clients.
 - Provisional:
 - This type is provisional and can be changed, moved or removed without prior notice.
 
- 
Method Summary
Modifier and TypeMethodDescriptiondeploy(RepositorySystemSession session, DeployRequest request) Uploads a collection of artifacts and their accompanying metadata to a remote repository. 
- 
Method Details
- 
deploy
DeployResult deploy(RepositorySystemSession session, DeployRequest request) throws DeploymentException Uploads a collection of artifacts and their accompanying metadata to a remote repository.- Parameters:
 session- The repository session, must not benull.request- The deployment request, must not benull.- Returns:
 - The deployment result, never 
null. - Throws:
 DeploymentException- If any artifact/metadata from the request could not be deployed.- See Also:
 
 
 -