Enum ResolutionScope
- java.lang.Object
-
- java.lang.Enum<ResolutionScope>
-
- org.apache.maven.plugins.annotations.ResolutionScope
-
- All Implemented Interfaces:
Serializable,Comparable<ResolutionScope>
public enum ResolutionScope extends Enum<ResolutionScope>
Dependencies resolution scopes available before mojo execution. Important note: Theidvalues of this enum correspond to constants oforg.apache.maven.artifact.Artifactclass and MUST BE KEPT IN SYNC.- Since:
- 3.0
- Author:
- Hervé Boutemy
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPILEcompileresolution scope =compile+system+provideddependenciesCOMPILE_PLUS_RUNTIMEcompile+runtimeresolution scope (Maven 3 only) =compile+system+provided+runtimedependenciesNONEempty resolution scopeRUNTIMEruntimeresolution scope =compile+runtimedependenciesRUNTIME_PLUS_SYSTEMruntime+systemresolution scope (Maven 3 only) =compile+system+runtimedependenciesTESTtestresolution scope =compile+system+provided+runtime+testdependencies
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringid()static ResolutionScopevalueOf(String name)Returns 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 Detail
-
NONE
public static final ResolutionScope NONE
empty resolution scope
-
COMPILE
public static final ResolutionScope COMPILE
compileresolution scope =compile+system+provideddependencies
-
COMPILE_PLUS_RUNTIME
public static final ResolutionScope COMPILE_PLUS_RUNTIME
compile+runtimeresolution scope (Maven 3 only) =compile+system+provided+runtimedependencies
-
RUNTIME
public static final ResolutionScope RUNTIME
runtimeresolution scope =compile+runtimedependencies
-
RUNTIME_PLUS_SYSTEM
public static final ResolutionScope RUNTIME_PLUS_SYSTEM
runtime+systemresolution scope (Maven 3 only) =compile+system+runtimedependencies
-
TEST
public static final ResolutionScope TEST
testresolution scope =compile+system+provided+runtime+testdependencies
-
-
Method Detail
-
values
public static ResolutionScope[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ResolutionScope c : ResolutionScope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResolutionScope valueOf(String name)
Returns 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 nameNullPointerException- if the argument is null
-
-