| 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.
|
| org.eclipse.aether.version |
The definition of a version scheme for parsing and comparing versions.
|
| Modifier and Type | Method | Description |
|---|---|---|
java.util.Iterator<Version> |
VersionFilter.VersionFilterContext.iterator() |
Gets an iterator over the available versions of the dependency.
|
| Modifier and Type | Method | Description |
|---|---|---|
ArtifactRepository |
VersionFilter.VersionFilterContext.getRepository(Version version) |
Gets the repository from which the specified version was resolved.
|
| Modifier and Type | Method | Description |
|---|---|---|
Version |
DefaultDependencyNode.getVersion() |
|
Version |
DependencyNode.getVersion() |
Gets the version that was selected for the dependency's target artifact.
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
DefaultDependencyNode.setVersion(Version version) |
Sets the version that was selected for the dependency's target artifact.
|
| Modifier and Type | Method | Description |
|---|---|---|
Version |
VersionRangeResult.getHighestVersion() |
Gets the highest version matching the requested range.
|
Version |
VersionRangeResult.getLowestVersion() |
Gets the lowest version matching the requested range.
|
| Modifier and Type | Method | Description |
|---|---|---|
java.util.List<Version> |
VersionRangeResult.getVersions() |
Gets the versions (in ascending order) that matched the requested range.
|
| Modifier and Type | Method | Description |
|---|---|---|
VersionRangeResult |
VersionRangeResult.addVersion(Version version) |
Adds the specified version to the result.
|
ArtifactRepository |
VersionRangeResult.getRepository(Version version) |
Gets the repository from which the specified version was resolved.
|
VersionRangeResult |
VersionRangeResult.setRepository(Version version,
ArtifactRepository repository) |
Records the repository from which the specified version was resolved
|
| Modifier and Type | Method | Description |
|---|---|---|
VersionRangeResult |
VersionRangeResult.setVersions(java.util.List<Version> versions) |
Sets the versions (in ascending order) matching the requested range.
|
| Modifier and Type | Method | Description |
|---|---|---|
Version |
VersionConstraint.getVersion() |
Gets the version recommended by this constraint.
|
Version |
VersionRange.Bound.getVersion() |
Gets the bounding version.
|
Version |
VersionScheme.parseVersion(java.lang.String version) |
Parses the specified version string, for example "1.0".
|
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
VersionConstraint.containsVersion(Version version) |
Determines whether the specified version satisfies this constraint.
|
boolean |
VersionRange.containsVersion(Version version) |
Determines whether the specified version is contained within this range.
|
| Constructor | Description |
|---|---|
Bound(Version version,
boolean inclusive) |
Creates a new bound with the specified properties.
|