public interface MavenDependencyResolutionExtensionsOutput
Interface for filtering out specific extensions of a depdendency resolution output.
Callers can use the get(
Clients shouldn't implement this interface.
saker.maven.support 0.8.4
| public MavenDependencyResolutionTaskOutput | Gets the dependency resolution output for the specified extension(s). |
Gets the dependency resolution output for the specified extension(s).
The argument can be specified as a single extension string, or by passing multiple extensions separated by the
'|' character.
Example:
MavenDependencyResolutionExtensionsOutput ext;
// filter out only jar artifacts
ext.get("jar");
// filter out only aar and zip artifacts
ext.get("aar|zip");
extensionThe extensions.
The filtered resolution output.