Uses of Interface
org.springframework.boot.loader.tools.LibraryScope
Packages that use LibraryScope
Package
Description
Tools for generating executable JAR/WAR files.
-
Uses of LibraryScope in org.springframework.boot.loader.tools
Fields in org.springframework.boot.loader.tools declared as LibraryScopeModifier and TypeFieldDescriptionstatic final LibraryScopeLibraryScope.COMPILEThe library is used at compile time and runtime.static final LibraryScopeLibraryScope.CUSTOMMarker for custom scope when custom configuration is used.static final LibraryScopeLibraryScope.PROVIDEDThe library is needed for compile but is usually provided when running.static final LibraryScopeLibraryScope.RUNTIMEThe library is used at runtime but not needed for compile.Methods in org.springframework.boot.loader.tools that return LibraryScopeModifier and TypeMethodDescription@Nullable LibraryScopeLibrary.getScope()Return the scope of the library.Methods in org.springframework.boot.loader.tools with parameters of type LibraryScopeModifier and TypeMethodDescription@Nullable StringLayout.getLibraryLocation(String libraryName, @Nullable LibraryScope scope) Returns the destination path for a given library.Layouts.Jar.getLibraryLocation(String libraryName, @Nullable LibraryScope scope) @Nullable StringLayouts.War.getLibraryLocation(String libraryName, @Nullable LibraryScope scope) Constructors in org.springframework.boot.loader.tools with parameters of type LibraryScopeModifierConstructorDescriptionLibrary(File file, LibraryScope scope) Create a newLibrary.Library(@Nullable String name, @Nullable File file, @Nullable LibraryScope scope, @Nullable LibraryCoordinates coordinates, boolean unpackRequired, boolean local, boolean included) Create a newLibrary.