| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ResolutionScope>
org.apache.maven.plugins.annotations.ResolutionScope
public enum ResolutionScope
Dependencies resolution scopes available before mojo execution.
| Enum Constant Summary | |
|---|---|
| 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 Summary | |
|---|---|
|  String | id() | 
| static ResolutionScope | valueOf(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. | 
| Methods inherited from class java.lang.Enum | 
|---|
| clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
| Methods inherited from class java.lang.Object | 
|---|
| getClass, notify, notifyAll, wait, wait, wait | 
| Enum Constant Detail | 
|---|
public static final ResolutionScope COMPILE
compile resolution scope
 = compile + system + provided dependencies
public static final ResolutionScope COMPILE_PLUS_RUNTIME
compile+runtime resolution scope (Maven 3 only)
 = compile + system + provided + runtime dependencies
public static final ResolutionScope RUNTIME
runtime resolution scope
 = compile + runtime dependencies
public static final ResolutionScope RUNTIME_PLUS_SYSTEM
runtime+system resolution scope (Maven 3 only)
 = compile + system + runtime dependencies
public static final ResolutionScope TEST
test resolution scope
 = compile + system + provided + runtime + test
 dependencies
| Method Detail | 
|---|
public static ResolutionScope[] values()
for (ResolutionScope c : ResolutionScope.values()) System.out.println(c);
public static ResolutionScope valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String id()
| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||