saker.maven.support Documentation TaskDoc JavaDoc Packages
public interface MavenDependencyResolutionExtensionsOutput
Interface for filtering out specific extensions of a depdendency resolution output.

Callers can use the get(String) method to get the resolution output that contains artifacts only with the specified extension(s).

Clients shouldn't implement this interface.

saker.maven.support 0.8.4
Methods
public MavenDependencyResolutionTaskOutput
get(String extension)
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.