Use the term "uber jar" in reference documentation and javadoc

Update reference documentation and javadoc to use the term "uber jar"
rather than "fat jar".

Closes gh-37653
This commit is contained in:
Phillip Webb
2023-09-28 13:29:30 -07:00
parent 780f75d5a2
commit 3d6859e80f
13 changed files with 18 additions and 18 deletions

View File

@@ -64,7 +64,7 @@ public class Library {
* @param unpackRequired if the library needs to be unpacked before it can be used
* @param local if the library is local (part of the same build) to the application
* that is being packaged
* @param included if the library is included in the fat jar
* @param included if the library is included in the uber jar
* @since 2.4.8
*/
public Library(String name, File file, LibraryScope scope, LibraryCoordinates coordinates, boolean unpackRequired,
@@ -142,7 +142,7 @@ public class Library {
}
/**
* Return if the library is included in the fat jar.
* Return if the library is included in the uber jar.
* @return if the library is included
*/
public boolean isIncluded() {

View File

@@ -27,7 +27,7 @@ import java.util.stream.Stream;
* <ol>
* <li>"dependencies" - For non snapshot dependencies</li>
* <li>"spring-boot-loader" - For classes from {@code spring-boot-loader} used to launch a
* fat jar</li>
* uber jar</li>
* <li>"snapshot-dependencies" - For snapshot dependencies</li>
* <li>"application" - For application classes and resources</li>
* </ol>