Package org.apache.maven.internal.aether
Class DefaultRepositorySystemSessionFactory
java.lang.Object
org.apache.maven.internal.aether.DefaultRepositorySystemSessionFactory
- All Implemented Interfaces:
RepositorySystemSessionFactory
@Singleton
@Named
public class DefaultRepositorySystemSessionFactory
extends Object
implements RepositorySystemSessionFactory
- Since:
- 3.3.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringUser property for chained LRM: the new "head" local repository to use, and "push" the existing into tail.static final StringUser property for selecting dependency manager behavior regarding transitive dependencies and dependency management entries in their POMs. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.eclipse.aether.DefaultRepositorySystemSessionDeprecated.org.eclipse.aether.RepositorySystemSession.SessionBuilderCreates "ready to use" session builder instance.static Pathstatic org.eclipse.aether.repository.LocalRepositoryManagersetUpLocalRepositoryManager(String localRepository, org.eclipse.aether.RepositorySystem repoSystem, org.eclipse.aether.RepositorySystemSession session)
-
Field Details
-
MAVEN_REPO_LOCAL_HEAD
User property for chained LRM: the new "head" local repository to use, and "push" the existing into tail. Similar tomaven.repo.local.tail, this property may contain comma separated list of paths to be used as local repositories (combine with chained local repository), but while latter is "appending" this one is "prepending".- Since:
- 3.9.10
- See Also:
-
MAVEN_RESOLVER_DEPENDENCY_MANAGER_TRANSITIVITY
User property for selecting dependency manager behavior regarding transitive dependencies and dependency management entries in their POMs. Maven 3 targeted full backward compatibility with Maven 2. Hence, it ignored dependency management entries in transitive dependency POMs. Maven 4 enables "transitivity" by default. Hence unlike Maven 3, it obeys dependency management entries deep in the dependency graph as well.
Default (behave as whole Maven 3.x line):"false".- Since:
- 3.10.0
- See Also:
-
-
Constructor Details
-
DefaultRepositorySystemSessionFactory
public DefaultRepositorySystemSessionFactory()
-
-
Method Details
-
newRepositorySession
@Deprecated public org.eclipse.aether.DefaultRepositorySystemSession newRepositorySession(MavenExecutionRequest request) Deprecated.For legacy consumers; hopefully nobody. -
newRepositorySessionBuilder
public org.eclipse.aether.RepositorySystemSession.SessionBuilder newRepositorySessionBuilder(MavenExecutionRequest request) Description copied from interface:RepositorySystemSessionFactoryCreates "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.- Specified by:
newRepositorySessionBuilderin interfaceRepositorySystemSessionFactory- Parameters:
request- The maven execution request, must not benull.- Returns:
- The session builder "ready to use" without workspace readers.
-
setUpLocalRepositoryManager
public static org.eclipse.aether.repository.LocalRepositoryManager setUpLocalRepositoryManager(String localRepository, org.eclipse.aether.RepositorySystem repoSystem, org.eclipse.aether.RepositorySystemSession session) -
resolve
-