Interface LibraryScope
public interface LibraryScope
Field Summary
Fields Modifier and Type Field Description static LibraryScopeCOMPILEThe library is used at compile time and runtime.static LibraryScopeCUSTOMMarker for custom scope when custom configuration is used.static LibraryScopePROVIDEDThe library is needed for compile but is usually provided when running.static LibraryScopeRUNTIMEThe library is used at runtime but not needed for compile.
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringtoString()
Field Detail
COMPILE
static final LibraryScope COMPILE
The library is used at compile time and runtime.
RUNTIME
static final LibraryScope RUNTIME
The library is used at runtime but not needed for compile.
PROVIDED
static final LibraryScope PROVIDED
The library is needed for compile but is usually provided when running.
CUSTOM
static final LibraryScope CUSTOM
Marker for custom scope when custom configuration is used.