public interface MavenDependencyResolutionScopesOutput
Interface for limiting the scope of a dependency resolution output.
Callers can use the get(
Clients shouldn't implement this interface.
public MavenDependencyResolutionTaskOutput | Gets the dependency resolution output for the specified scopes. |
Gets the dependency resolution output for the specified scopes.
The argument can be either the following:
"Compilation"
: for the scopescompile
andprovided
."Execution"
: for the scopescompile
andruntime
."TestCompilation"
: for the scopestest
,compile
andprovided
."TestExecution"
: for the scopestest
,compile
andruntime
."<scope>"
: a single Maven scope."<scope>[|<scope>]*"
: multiple Maven scopes.
scopeThe scope to filter for. If
null
, the result contains no artifacts.The filtered resolution output.