Package | Description |
---|---|
org.eclipse.aether |
The primary API of the
RepositorySystem and its functionality. |
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.impl |
The provisional interfaces defining the various sub components that implement the repository system.
|
org.eclipse.aether.internal.impl |
The various sub components that collectively implement the repository system.
|
org.eclipse.aether.internal.impl.collect |
Internal helper classes for dependency collector.
|
org.eclipse.aether.internal.impl.collect.bf | |
org.eclipse.aether.internal.impl.collect.df | |
org.eclipse.aether.resolution |
The types supporting the resolution of artifacts and metadata from repositories.
|
Modifier and Type | Method and Description |
---|---|
CollectResult |
RepositorySystem.collectDependencies(RepositorySystemSession session,
CollectRequest request)
Collects the transitive dependencies of an artifact and builds a dependency graph.
|
Modifier and Type | Field and Description |
---|---|
private CollectRequest |
CollectResult.request |
Modifier and Type | Method and Description |
---|---|
CollectRequest |
CollectRequest.addDependency(Dependency dependency)
Adds the specified direct dependency.
|
CollectRequest |
CollectRequest.addManagedDependency(Dependency managedDependency)
Adds the specified managed dependency.
|
CollectRequest |
CollectRequest.addRepository(RemoteRepository repository)
Adds the specified repository for collection.
|
CollectRequest |
CollectResult.getRequest()
Gets the collection request that was made.
|
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.
|
CollectRequest |
CollectRequest.setRepositories(java.util.List<RemoteRepository> repositories)
Sets the repositories to use for the collection.
|
CollectRequest |
CollectRequest.setRequestContext(java.lang.String context)
Sets the context in which this request is made.
|
CollectRequest |
CollectRequest.setRoot(Dependency root)
Sets the root dependency of the graph.
|
CollectRequest |
CollectRequest.setRootArtifact(Artifact rootArtifact)
Sets the root artifact for the dependency graph.
|
CollectRequest |
CollectRequest.setTrace(RequestTrace trace)
Sets the trace information that describes the higher level request/operation in which this request is issued.
|
Constructor and Description |
---|
CollectResult(CollectRequest request)
Creates a new result for the specified request.
|
Modifier and Type | Method and Description |
---|---|
CollectResult |
DependencyCollector.collectDependencies(RepositorySystemSession session,
CollectRequest request)
Collects the transitive dependencies of some artifacts and builds a dependency graph.
|
Modifier and Type | Method and Description |
---|---|
CollectResult |
DefaultRepositorySystem.collectDependencies(RepositorySystemSession session,
CollectRequest request) |
Modifier and Type | Method and Description |
---|---|
CollectResult |
DefaultDependencyCollector.collectDependencies(RepositorySystemSession session,
CollectRequest request) |
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,
java.util.List<RemoteRepository> repositories,
java.util.List<Dependency> dependencies,
java.util.List<Dependency> managedDependencies,
DependencyCollectorDelegate.Results results) |
Modifier and Type | Field and Description |
---|---|
(package private) CollectRequest |
BfDependencyCollector.Args.request |
Modifier and Type | Method and Description |
---|---|
protected void |
BfDependencyCollector.doCollectDependencies(RepositorySystemSession session,
RequestTrace trace,
DataPool pool,
DefaultDependencyCollectionContext context,
DefaultVersionFilterContext versionContext,
CollectRequest request,
DependencyNode node,
java.util.List<RemoteRepository> repositories,
java.util.List<Dependency> dependencies,
java.util.List<Dependency> managedDependencies,
DependencyCollectorDelegate.Results results) |
Constructor and Description |
---|
Args(RepositorySystemSession session,
DataPool pool,
DefaultDependencyCollectionContext collectionContext,
DefaultVersionFilterContext versionContext,
CollectRequest request,
DependencyResolutionSkipper skipper,
BfDependencyCollector.ParallelDescriptorResolver resolver) |
Modifier and Type | Field and Description |
---|---|
(package private) CollectRequest |
DfDependencyCollector.Args.request |
Modifier and Type | Method and Description |
---|---|
protected void |
DfDependencyCollector.doCollectDependencies(RepositorySystemSession session,
RequestTrace trace,
DataPool pool,
DefaultDependencyCollectionContext context,
DefaultVersionFilterContext versionContext,
CollectRequest request,
DependencyNode node,
java.util.List<RemoteRepository> repositories,
java.util.List<Dependency> dependencies,
java.util.List<Dependency> managedDependencies,
DependencyCollectorDelegate.Results results) |
Constructor and Description |
---|
Args(RepositorySystemSession session,
DataPool pool,
NodeStack nodes,
DefaultDependencyCollectionContext collectionContext,
DefaultVersionFilterContext versionContext,
CollectRequest request) |
Modifier and Type | Field and Description |
---|---|
private CollectRequest |
DependencyRequest.collectRequest |
Modifier and Type | Method and Description |
---|---|
CollectRequest |
DependencyRequest.getCollectRequest()
Gets the collect request used to calculate the dependency graph whose artifacts should be resolved.
|
Modifier and Type | Method and Description |
---|---|
DependencyRequest |
DependencyRequest.setCollectRequest(CollectRequest collectRequest)
Sets the collect request used to calculate the dependency graph whose artifacts should be resolved.
|
Constructor and Description |
---|
DependencyRequest(CollectRequest request,
DependencyFilter filter)
Creates a request for the specified collect request and with the given resolution filter.
|