Uses of Class
org.eclipse.aether.collection.CollectRequest
Packages that use 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 subcomponents 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
Methods in org.eclipse.aether with parameters of type CollectRequestModifier 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
Methods in org.eclipse.aether.collection that return CollectRequestModifier 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.Constructors in org.eclipse.aether.collection with parameters of type CollectRequestModifierConstructorDescriptionCollectResult
(CollectRequest request) Creates a new result for the specified request. -
Uses of CollectRequest in org.eclipse.aether.impl
Methods in org.eclipse.aether.impl with parameters of type CollectRequestModifier 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
Methods in org.eclipse.aether.internal.impl with parameters of type CollectRequestModifier and TypeMethodDescriptionDefaultRepositorySystem.collectDependencies
(RepositorySystemSession session, CollectRequest request) -
Uses of CollectRequest in org.eclipse.aether.internal.impl.collect
Methods in org.eclipse.aether.internal.impl.collect with parameters of type CollectRequestModifier 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
Methods in org.eclipse.aether.internal.impl.collect.bf with parameters of type CollectRequestModifier 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
Methods in org.eclipse.aether.internal.impl.collect.df with parameters of type CollectRequestModifier 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
Methods in org.eclipse.aether.resolution that return CollectRequestModifier and TypeMethodDescriptionDependencyRequest.getCollectRequest()
Gets the collect request used to calculate the dependency graph whose artifacts should be resolved.Methods in org.eclipse.aether.resolution with parameters of type CollectRequestModifier and TypeMethodDescriptionDependencyRequest.setCollectRequest
(CollectRequest collectRequest) Sets the collect request used to calculate the dependency graph whose artifacts should be resolved.Constructors in org.eclipse.aether.resolution with parameters of type CollectRequestModifierConstructorDescriptionDependencyRequest
(CollectRequest request, DependencyFilter filter) Creates a request for the specified collect request and with the given resolution filter.