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 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.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.