Skip to content

Commit cc1f7a9

Browse files
committed
Merge pull request #20630 from dreis2211
* pr/20630: Fix typos in packaging docs Closes gh-20630
2 parents 0717de7 + f95e954 commit cc1f7a9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8051,7 +8051,7 @@ For Gradle, refer to the {spring-boot-gradle-plugin-docs}/#packaging-layered-jar
80518051

80528052
=== Writing the Dockerfile
80538053

8054-
When you create a layered jar, the `spring-boot-layertools` jar will be added as a dependency to your jar.
8054+
When you create a layered jar, the `spring-boot-jarmode-layertools` jar will be added as a dependency to your jar.
80558055
With this jar on the classpath, you can launch your application in a special mode which allows the bootstrap code to run something entirely different from your application, for example, something that extracts the layers.
80568056
Here’s how you can launch your jar with a `layertools` jar mode:
80578057

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/packaging.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ The layers order is important as it determines how likely previous layers can be
290290
The default order is `dependencies`, `snapshot-dependencies`, and `application`.
291291
Content that is least likely to change should be added first, followed by layers that are more likely to change.
292292

293-
When you create a layered jar, the `spring-boot-layertools` jar will be added as a dependency to your jar.
293+
When you create a layered jar, the `spring-boot-jarmode-layertools` jar will be added as a dependency to your jar.
294294
With this jar on the classpath, you can launch your application in a special mode which allows the bootstrap code to run something entirely different from your application, for example, something that extracts the layers.
295295
If you wish to exclude this dependency, you can do so in the following manner:
296296

@@ -335,4 +335,4 @@ The content of a `libraries` layer can be customized using filters to `include`
335335
The format is `groupId:artifactId[:version]`.
336336
In the example above, any artifact whose version ends with `SNAPSHOT` is going to be included in the `snapshot-dependencies` layer.
337337

338-
The content of a `application` layer can be customized using filters to `includ` or `exclude` based on location of the entry using Ant-style pattern matching.
338+
The content of an `application` layer can be customized using filters to `include` or `exclude` based on location of the entry using Ant-style pattern matching.

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/docs/asciidoc/packaging.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ The content of a `libraries` layer can be customized using filters to `include`
180180
The format is `groupId:artifactId[:version]`.
181181
In the example above, any artifact whose version ends with `SNAPSHOT` is going to be included in the `snapshot-dependencies` layer.
182182

183-
The content of a `application` layer can be customized using filters to `include` or `exclude` based on location of the entry using Ant-style pattern matching.
183+
The content of an `application` layer can be customized using filters to `include` or `exclude` based on location of the entry using Ant-style pattern matching.
184184

185185

186186

@@ -516,7 +516,7 @@ This example excludes any artifact belonging to the `com.foo` group:
516516
[[repackage-layered-jars-tools]]
517517
==== Layered jar tools
518518

519-
When you create a layered jar, the `spring-boot-layertools` jar will be added as a dependency to your jar.
519+
When you create a layered jar, the `spring-boot-jarmode-layertools` jar will be added as a dependency to your jar.
520520
With this jar on the classpath, you can launch your application in a special mode which allows the bootstrap code to run something entirely different from your application, for example, something that extracts the layers.
521521
If you wish to exclude this dependency, you can do so in the following manner:
522522

0 commit comments

Comments
 (0)