Uses of Class
org.eclipse.aether.collection.CollectRequest
Package
Description
The primary API of the
RepositorySystem
and its functionality.The types and extension points for collecting the transitive dependencies of an artifact and building a dependency
graph.
The provisional interfaces defining the various sub components that implement the repository system.
The various sub components that collectively implement the repository system.
Internal helper classes for dependency collector.
The types supporting the resolution of artifacts and metadata from repositories.
-
Uses of CollectRequest in org.eclipse.aether
Modifier and TypeMethodDescriptionRepositorySystem.collectDependencies
(RepositorySystemSession session, CollectRequest request) Collects the transitive dependencies of an artifact and builds a dependency graph. -
Uses of CollectRequest in org.eclipse.aether.collection
Modifier and TypeMethodDescriptionCollectRequest.addDependency
(Dependency dependency) Adds the specified direct dependency.CollectRequest.addManagedDependency
(Dependency managedDependency) Adds the specified managed dependency.CollectRequest.addRepository
(RemoteRepository repository) Adds the specified repository for collection.CollectResult.getRequest()
Gets the collection request that was made.CollectRequest.setDependencies
(List<Dependency> dependencies) Sets the direct dependencies.CollectRequest.setManagedDependencies
(List<Dependency> managedDependencies) Sets the dependency management to apply to transitive dependencies.CollectRequest.setRepositories
(List<RemoteRepository> repositories) Sets the repositories to use for the collection.CollectRequest.setRequestContext
(String context) Sets the context in which this request is made.CollectRequest.setRoot
(Dependency root) Sets the root dependency of the graph.CollectRequest.setRootArtifact
(Artifact rootArtifact) Sets the root artifact for the dependency graph.CollectRequest.setTrace
(RequestTrace trace) Sets the trace information that describes the higher level request/operation in which this request is issued.ModifierConstructorDescriptionCollectResult
(CollectRequest request) Creates a new result for the specified request. -
Uses of CollectRequest in org.eclipse.aether.impl
Modifier and TypeMethodDescriptionDependencyCollector.collectDependencies
(RepositorySystemSession session, CollectRequest request) Collects the transitive dependencies of some artifacts and builds a dependency graph. -
Uses of CollectRequest in org.eclipse.aether.internal.impl
Modifier and TypeMethodDescriptionDefaultRepositorySystem.collectDependencies
(RepositorySystemSession session, CollectRequest request) -
Uses of CollectRequest in org.eclipse.aether.internal.impl.collect
Modifier and TypeMethodDescriptionDefaultDependencyCollector.collectDependencies
(RepositorySystemSession session, CollectRequest request) final CollectResult
DependencyCollectorDelegate.collectDependencies
(RepositorySystemSession session, CollectRequest request) protected abstract void
DependencyCollectorDelegate.doCollectDependencies
(RepositorySystemSession session, RequestTrace trace, DataPool pool, DefaultDependencyCollectionContext context, DefaultVersionFilterContext versionContext, CollectRequest request, DependencyNode node, List<RemoteRepository> repositories, List<Dependency> dependencies, List<Dependency> managedDependencies, DependencyCollectorDelegate.Results results) -
Uses of CollectRequest in org.eclipse.aether.internal.impl.collect.bf
Modifier and TypeMethodDescriptionprotected void
BfDependencyCollector.doCollectDependencies
(RepositorySystemSession session, RequestTrace trace, DataPool pool, DefaultDependencyCollectionContext context, DefaultVersionFilterContext versionContext, CollectRequest request, DependencyNode node, List<RemoteRepository> repositories, List<Dependency> dependencies, List<Dependency> managedDependencies, DependencyCollectorDelegate.Results results) -
Uses of CollectRequest in org.eclipse.aether.internal.impl.collect.df
Modifier and TypeMethodDescriptionprotected void
DfDependencyCollector.doCollectDependencies
(RepositorySystemSession session, RequestTrace trace, DataPool pool, DefaultDependencyCollectionContext context, DefaultVersionFilterContext versionContext, CollectRequest request, DependencyNode node, List<RemoteRepository> repositories, List<Dependency> dependencies, List<Dependency> managedDependencies, DependencyCollectorDelegate.Results results) -
Uses of CollectRequest in org.eclipse.aether.resolution
Modifier and TypeMethodDescriptionDependencyRequest.getCollectRequest()
Gets the collect request used to calculate the dependency graph whose artifacts should be resolved.Modifier and TypeMethodDescriptionDependencyRequest.setCollectRequest
(CollectRequest collectRequest) Sets the collect request used to calculate the dependency graph whose artifacts should be resolved.ModifierConstructorDescriptionDependencyRequest
(CollectRequest request, DependencyFilter filter) Creates a request for the specified collect request and with the given resolution filter.