Package org.eclipse.aether.supplier
Class SessionBuilderSupplier
java.lang.Object
org.eclipse.aether.supplier.SessionBuilderSupplier
- All Implemented Interfaces:
Supplier<org.eclipse.aether.RepositorySystemSession.SessionBuilder>
public class SessionBuilderSupplier
extends Object
implements Supplier<org.eclipse.aether.RepositorySystemSession.SessionBuilder>
A simple
Supplier
of RepositorySystemSession.SessionBuilder
instances, that on each call supplies newly
constructed instance. To create session out of builder, use RepositorySystemSession.SessionBuilder.build()
. For proper closing
of sessions, use RepositorySystemSession.CloseableSession.close()
method on built instance(s).
Extend this class and override methods to customize, if needed.
- Since:
- 2.0.0
-
Field Summary
Modifier and TypeFieldDescriptionprotected final org.eclipse.aether.RepositorySystem
-
Constructor Summary
ConstructorDescriptionSessionBuilderSupplier
(org.eclipse.aether.RepositorySystem repositorySystem) -
Method Summary
Modifier and TypeMethodDescriptionprotected void
configureSessionBuilder
(org.eclipse.aether.RepositorySystemSession.SessionBuilder session) org.eclipse.aether.RepositorySystemSession.SessionBuilder
get()
Creates a new Maven-like repository system session by initializing the session with values typical for Maven-based resolution.protected org.eclipse.aether.resolution.ArtifactDescriptorPolicy
protected org.eclipse.aether.artifact.ArtifactTypeRegistry
protected org.eclipse.aether.collection.DependencyGraphTransformer
protected org.eclipse.aether.collection.DependencyManager
protected org.eclipse.aether.collection.DependencySelector
protected org.eclipse.aether.collection.DependencyTraverser
-
Field Details
-
repositorySystem
-
-
Constructor Details
-
SessionBuilderSupplier
-
-
Method Details
-
configureSessionBuilder
protected void configureSessionBuilder(org.eclipse.aether.RepositorySystemSession.SessionBuilder session) -
getDependencyTraverser
-
getDependencyManager
-
getDependencySelector
-
getDependencyGraphTransformer
-
getArtifactTypeRegistry
-
getArtifactDescriptorPolicy
-
get
Creates a new Maven-like repository system session by initializing the session with values typical for Maven-based resolution. In more detail, this method configures settings relevant for the processing of dependency graphs, most other settings remain at their generic default value. Use the various setters to further configure the session with authentication, mirror, proxy and other information required for your environment. At least, local repository manager needs to be configured to make session be able to create session instance.
-