saker.maven.support Documentation TaskDoc JavaDoc Packages
public interface MavenDependencyResolutionTaskOutput
Provides access to the results of the dependency resolution task.

The result of the resolution is a set of artifact coordinates paired with the dependency scope they were resolved with.

Clients shouldn't implement this interface.

Methods
public Collection<ArtifactCoordinates>
Gets the artifact coordinates that were resolved during the dependency resolution.
public MavenOperationConfiguration
Gets the MavenOperationConfiguration that was used when performing the dependency resolution.
public MavenDependencyResolutionExtensionsOutput
Gets an object that can be used to filter out artifacts with the specified extension(s).
public Collection<ResolvedDependencyArtifact>
Gets the artifact resolutions that are the result of the operation.
public MavenDependencyResolutionScopesOutput
Gets an object that can be used to limit the output by the specified dependency scopes.
Gets the artifact coordinates that were resolved during the dependency resolution.
The coordinates of the resolved artifacts.
Gets the MavenOperationConfiguration that was used when performing the dependency resolution.
The configuration.
Gets an object that can be used to filter out artifacts with the specified extension(s).

The result object provides access to the same artifacts as this, but with the artifact extensions specified in MavenDependencyResolutionExtensionsOutput.get(String).

The extension output.
saker.maven.support 0.8.4
Gets the artifact resolutions that are the result of the operation.

The elements provide access to the artifact coordinates and the scope of the associated dependency.

The resolved artifacts.
Gets an object that can be used to limit the output by the specified dependency scopes.

The result object provides access to the same artifacts as this, but can filter out unnecessary dependency scopes.

The scope output.