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 LibraryScope
LibraryScope.COMPILE
The library is used at compile time and runtime.static final LibraryScope
LibraryScope.CUSTOM
Marker for custom scope when custom configuration is used.static final LibraryScope
LibraryScope.PROVIDED
The library is needed for compile but is usually provided when running.static final LibraryScope
LibraryScope.RUNTIME
The library is used at runtime but not needed for compile.Methods in org.springframework.boot.loader.tools that return LibraryScopeMethods in org.springframework.boot.loader.tools with parameters of type LibraryScopeModifier and TypeMethodDescriptionLayout.getLibraryLocation
(String libraryName, LibraryScope scope) Returns the destination path for a given library.Layouts.Jar.getLibraryLocation
(String libraryName, LibraryScope scope) Layouts.War.getLibraryLocation
(String libraryName, LibraryScope scope) Constructors in org.springframework.boot.loader.tools with parameters of type LibraryScopeModifierConstructorDescriptionLibrary
(File file, LibraryScope scope) Create a newLibrary
.Library
(String name, File file, LibraryScope scope, LibraryCoordinates coordinates, boolean unpackRequired, boolean local, boolean included) Create a newLibrary
.