Package | Description |
---|---|
org.springframework.boot.loader.tools |
Tools for generating executable JAR/WAR files.
|
Modifier and Type | Method and Description |
---|---|
LibraryCoordinates |
Library.getCoordinates()
Return the coordinates of the library.
|
static LibraryCoordinates |
LibraryCoordinates.of(String groupId,
String artifactId,
String version)
Factory method to create
LibraryCoordinates with the specified values. |
Modifier and Type | Method and Description |
---|---|
static String |
LibraryCoordinates.toStandardNotationString(LibraryCoordinates coordinates)
Utility method that returns the given coordinates using the standard
group:artifact:version form. |
Constructor and Description |
---|
JarModeLibrary(LibraryCoordinates coordinates) |
Library(String name,
File file,
LibraryScope scope,
LibraryCoordinates coordinates,
boolean unpackRequired)
Deprecated.
since 2.4.8 for removal in 2.6.0 in favor of
Library(String, File, LibraryScope, LibraryCoordinates, boolean, boolean, boolean) |
Library(String name,
File file,
LibraryScope scope,
LibraryCoordinates coordinates,
boolean unpackRequired,
boolean local)
Deprecated.
since 2.4.8 for removal in 2.6.0 in favor of
Library(String, File, LibraryScope, LibraryCoordinates, boolean, boolean, boolean) |
Library(String name,
File file,
LibraryScope scope,
LibraryCoordinates coordinates,
boolean unpackRequired,
boolean local,
boolean included)
Create a new
Library . |