Package org.apache.maven.internal
Interface RepositorySystemSessionFactory
-
- All Known Implementing Classes:
DefaultRepositorySystemSessionFactory
public interface RepositorySystemSessionFactoryFactory for Resolver session.- Since:
- 3.10.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.aether.RepositorySystemSession.SessionBuildernewRepositorySessionBuilder(MavenExecutionRequest request)Creates "ready to use" session builder instance.
-
-
-
Method Detail
-
newRepositorySessionBuilder
org.eclipse.aether.RepositorySystemSession.SessionBuilder newRepositorySessionBuilder(MavenExecutionRequest request)
Creates "ready to use" session builder instance. The factory does not set up one thing: theWorkspaceReaders, that is caller duty to figure out. Workspace readers should be set up as very last thing before using resolver session, that is built by invokingRepositorySystemSession.SessionBuilder.build()method.- Parameters:
request- The maven execution request, must not benull.- Returns:
- The session builder "ready to use" without workspace readers.
-
-