Enum ResolutionScope
- All Implemented Interfaces:
- Serializable,- Comparable<ResolutionScope>
Dependencies resolution scopes available before
 mojo execution.
 Important note: The 
id values of this enum correspond to constants of
 org.apache.maven.artifact.Artifact class and MUST BE KEPT IN SYNC.- Since:
- 3.0
- Author:
- Hervé Boutemy
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptioncompileresolution scope =compile+system+provideddependenciescompile+runtimeresolution scope (Maven 3 only) =compile+system+provided+runtimedependenciesempty resolution scoperuntimeresolution scope =compile+runtimedependenciesruntime+systemresolution scope (Maven 3 only) =compile+system+runtimedependenciestestresolution scope =compile+system+provided+runtime+testdependencies
- 
Method SummaryModifier and TypeMethodDescriptionid()static ResolutionScopeReturns the enum constant of this type with the specified name.static ResolutionScope[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
NONEempty resolution scope
- 
COMPILEcompileresolution scope =compile+system+provideddependencies
- 
COMPILE_PLUS_RUNTIMEcompile+runtimeresolution scope (Maven 3 only) =compile+system+provided+runtimedependencies
- 
RUNTIMEruntimeresolution scope =compile+runtimedependencies
- 
RUNTIME_PLUS_SYSTEMruntime+systemresolution scope (Maven 3 only) =compile+system+runtimedependencies
- 
TESTtestresolution scope =compile+system+provided+runtime+testdependencies
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
id
 
-