| Package | Description |
|---|---|
| org.eclipse.aether.collection |
The types and extension points for collecting the transitive dependencies of an artifact and building a dependency
graph.
|
| org.eclipse.aether.graph |
The representation of a dependency graph by means of connected dependency nodes.
|
| org.eclipse.aether.resolution |
The types supporting the resolution of artifacts and metadata from repositories.
|
| Modifier and Type | Method | Description |
|---|---|---|
Dependency |
DependencyCollectionContext.getDependency() |
Gets the dependency whose children are to be processed next during dependency collection.
|
Dependency |
VersionFilter.VersionFilterContext.getDependency() |
Gets the dependency whose version range is being filtered.
|
Dependency |
CollectRequest.getRoot() |
Gets the root dependency of the graph.
|
| Modifier and Type | Method | Description |
|---|---|---|
java.util.List<Dependency> |
CollectRequest.getDependencies() |
Gets the direct dependencies.
|
java.util.List<Dependency> |
CollectRequest.getManagedDependencies() |
Gets the dependency management to apply to transitive dependencies.
|
java.util.List<Dependency> |
DependencyCollectionContext.getManagedDependencies() |
Gets the dependency management information that was contributed by the artifact descriptor of the current
dependency.
|
| Modifier and Type | Method | Description |
|---|---|---|
CollectRequest |
CollectRequest.addDependency(Dependency dependency) |
Adds the specified direct dependency.
|
CollectRequest |
CollectRequest.addManagedDependency(Dependency managedDependency) |
Adds the specified managed dependency.
|
DependencyManagement |
DependencyManager.manageDependency(Dependency dependency) |
Applies dependency management to the specified dependency.
|
boolean |
DependencySelector.selectDependency(Dependency dependency) |
Decides whether the specified dependency should be included in the dependency graph.
|
CollectRequest |
CollectRequest.setRoot(Dependency root) |
Sets the root dependency of the graph.
|
boolean |
DependencyTraverser.traverseDependency(Dependency dependency) |
Decides whether the dependencies of the specified dependency should be traversed.
|
| Modifier and Type | Method | Description |
|---|---|---|
CollectRequest |
CollectRequest.setDependencies(java.util.List<Dependency> dependencies) |
Sets the direct dependencies.
|
CollectRequest |
CollectRequest.setManagedDependencies(java.util.List<Dependency> managedDependencies) |
Sets the dependency management to apply to transitive dependencies.
|
| Constructor | Description |
|---|---|
CollectRequest(Dependency root,
java.util.List<Dependency> dependencies,
java.util.List<RemoteRepository> repositories) |
Creates a new request with the specified properties.
|
CollectRequest(Dependency root,
java.util.List<RemoteRepository> repositories) |
Creates a request with the specified properties.
|
| Constructor | Description |
|---|---|
CollectRequest(java.util.List<Dependency> dependencies,
java.util.List<Dependency> managedDependencies,
java.util.List<RemoteRepository> repositories) |
Creates a new request with the specified properties.
|
CollectRequest(Dependency root,
java.util.List<Dependency> dependencies,
java.util.List<RemoteRepository> repositories) |
Creates a new request with the specified properties.
|
| Modifier and Type | Method | Description |
|---|---|---|
Dependency |
DefaultDependencyNode.getDependency() |
|
Dependency |
DependencyNode.getDependency() |
Gets the dependency associated with this node.
|
Dependency |
Dependency.setArtifact(Artifact artifact) |
Sets the artifact being depended on.
|
Dependency |
Dependency.setExclusions(java.util.Collection<Exclusion> exclusions) |
Sets the exclusions for the dependency.
|
Dependency |
Dependency.setOptional(java.lang.Boolean optional) |
Sets the optional flag for the dependency.
|
Dependency |
Dependency.setScope(java.lang.String scope) |
Sets the scope of the dependency, e.g.
|
| Modifier and Type | Method | Description |
|---|---|---|
java.util.List<Dependency> |
DependencyCycle.getCyclicDependencies() |
Gets the dependencies that actually form the cycle.
|
java.util.List<Dependency> |
DependencyCycle.getPrecedingDependencies() |
Gets the dependencies that lead to the first dependency on the cycle, starting from the root of the dependency
graph.
|
| Constructor | Description |
|---|---|
DefaultDependencyNode(Dependency dependency) |
Creates a new node with the specified dependency.
|
| Modifier and Type | Method | Description |
|---|---|---|
java.util.List<Dependency> |
ArtifactDescriptorResult.getDependencies() |
Gets the list of direct dependencies of the artifact.
|
java.util.List<Dependency> |
ArtifactDescriptorResult.getManagedDependencies() |
Gets the dependency management information.
|
| Modifier and Type | Method | Description |
|---|---|---|
ArtifactDescriptorResult |
ArtifactDescriptorResult.addDependency(Dependency dependency) |
Adds the specified direct dependency.
|
ArtifactDescriptorResult |
ArtifactDescriptorResult.addManagedDependency(Dependency dependency) |
Adds the specified managed dependency.
|
| Modifier and Type | Method | Description |
|---|---|---|
ArtifactDescriptorResult |
ArtifactDescriptorResult.setDependencies(java.util.List<Dependency> dependencies) |
Sets the list of direct dependencies of the artifact.
|
ArtifactDescriptorResult |
ArtifactDescriptorResult.setManagedDependencies(java.util.List<Dependency> dependencies) |
Sets the dependency management information.
|