Package org.eclipse.aether.impl
Interface Installer
-
- All Known Implementing Classes:
DefaultInstaller
public interface Installer
Publishes artifacts to the local 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InstallResultinstall(RepositorySystemSession session, InstallRequest request)Installs a collection of artifacts and their accompanying metadata to the local repository.
-
-
-
Method Detail
-
install
InstallResult install(RepositorySystemSession session, InstallRequest request) throws InstallationException
Installs a collection of artifacts and their accompanying metadata to the local repository.- Parameters:
session- The repository session, must not benull.request- The installation request, must not benull.- Returns:
- The installation result, never
null. - Throws:
InstallationException- If any artifact/metadata from the request could not be installed.- See Also:
RepositorySystem.install(RepositorySystemSession, InstallRequest),MetadataGeneratorFactory.newInstance(RepositorySystemSession, InstallRequest)
-
-