Package org.eclipse.aether.resolution
Class DependencyRequest
java.lang.Object
org.eclipse.aether.resolution.DependencyRequest
A request to resolve transitive dependencies. This request can either be supplied with a
CollectRequest
to
calculate the transitive dependencies or with an already resolved dependency graph.-
Constructor Summary
ConstructorDescriptionCreates an uninitialized request.DependencyRequest
(CollectRequest request, DependencyFilter filter) Creates a request for the specified collect request and with the given resolution filter.DependencyRequest
(DependencyNode node, DependencyFilter filter) Creates a request for the specified dependency graph and with the given resolution filter. -
Method Summary
Modifier and TypeMethodDescriptionGets the collect request used to calculate the dependency graph whose artifacts should be resolved.Gets the resolution filter used to select which artifacts of the dependency graph should be resolved.getRoot()
Gets the root node of the dependency graph whose artifacts should be resolved.getTrace()
Gets the trace information that describes the higher level request/operation in which this request is issued.setCollectRequest
(CollectRequest collectRequest) Sets the collect request used to calculate the dependency graph whose artifacts should be resolved.setFilter
(DependencyFilter filter) Sets the resolution filter used to select which artifacts of the dependency graph should be resolved.setRoot
(DependencyNode root) Sets the root node of the dependency graph whose artifacts should be resolved.setTrace
(RequestTrace trace) Sets the trace information that describes the higher level request/operation in which this request is issued.toString()
-
Constructor Details
-
DependencyRequest
public DependencyRequest()Creates an uninitialized request. Note that eithersetRoot(DependencyNode)
orsetCollectRequest(CollectRequest)
must eventually be called to create a valid request. -
DependencyRequest
Creates a request for the specified dependency graph and with the given resolution filter.- Parameters:
node
- The root node of the dependency graph whose artifacts should be resolved, may benull
.filter
- The resolution filter to use, may benull
.
-
DependencyRequest
Creates a request for the specified collect request and with the given resolution filter.- Parameters:
request
- The collect request used to calculate the dependency graph whose artifacts should be resolved, may benull
.filter
- The resolution filter to use, may benull
.
-
-
Method Details
-
getRoot
Gets the root node of the dependency graph whose artifacts should be resolved.- Returns:
- The root node of the dependency graph or
null
if none.
-
setRoot
Sets the root node of the dependency graph whose artifacts should be resolved. When this request is processed, the nodes of the given dependency graph will be updated to refer to the resolved artifacts. Eventually, eithersetRoot(DependencyNode)
orsetCollectRequest(CollectRequest)
must be called to create a valid request.- Parameters:
root
- The root node of the dependency graph, may benull
.- Returns:
- This request for chaining, never
null
.
-
getCollectRequest
Gets the collect request used to calculate the dependency graph whose artifacts should be resolved.- Returns:
- The collect request or
null
if none.
-
setCollectRequest
Sets the collect request used to calculate the dependency graph whose artifacts should be resolved. Eventually, eithersetRoot(DependencyNode)
orsetCollectRequest(CollectRequest)
must be called to create a valid request. If this request is supplied with a dependency node viasetRoot(DependencyNode)
, the collect request is ignored.- Parameters:
collectRequest
- The collect request, may benull
.- Returns:
- This request for chaining, never
null
.
-
getFilter
Gets the resolution filter used to select which artifacts of the dependency graph should be resolved.- Returns:
- The resolution filter or
null
to resolve all artifacts of the dependency graph.
-
setFilter
Sets the resolution filter used to select which artifacts of the dependency graph should be resolved. For example, use this filter to restrict resolution to dependencies of a certain scope.- Parameters:
filter
- The resolution filter, may benull
to resolve all artifacts of the dependency graph.- Returns:
- This request for chaining, never
null
.
-
getTrace
Gets the trace information that describes the higher level request/operation in which this request is issued.- Returns:
- The trace information about the higher level operation or
null
if none.
-
setTrace
Sets the trace information that describes the higher level request/operation in which this request is issued.- Parameters:
trace
- The trace information about the higher level operation, may benull
.- Returns:
- This request for chaining, never
null
.
-
toString
-