Skip to content

Commit 3e936dd

Browse files
committed
Polish
1 parent c88ef62 commit 3e936dd

File tree

1 file changed

+5
-5
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ include::../gradle/packaging/boot-war-properties-launcher.gradle.kts[tags=proper
265265
[[packaging-layered-jars]]
266266
==== Packaging layered jars
267267
By default, the `bootJar` task builds an archive that contains the application's classes and dependencies in `BOOT-INF/classes` and `BOOT-INF/lib` respectively.
268-
For cases where a docker image needs to be built from the contents of the jar, it's useful to be able to separate these folders futher so that they can be written into distinct layers.
268+
For cases where a docker image needs to be built from the contents of the jar, it's useful to be able to separate these folders further so that they can be written into distinct layers.
269269

270270
Layered jars use the same layout as regular boot packaged jars, but include an additional meta-data file that describes each layer.
271271
To use this feature, the layering feature must be enabled:
@@ -316,7 +316,7 @@ include::../gradle/packaging/boot-jar-layered-exclude-tools.gradle.kts[tags=laye
316316
Depending on your application, you may want to tune how layers are created and add new ones.
317317

318318
This can be done using configuration that describes how the jar can be separated into layers, and the order of those layers.
319-
The following example shows how the default ordering described above can be defined explicity:
319+
The following example shows how the default ordering described above can be defined explicitly:
320320

321321
[source,groovy,indent=0,subs="verbatim,attributes",role="primary"]
322322
.Groovy
@@ -338,10 +338,10 @@ The `layered` DSL is defined using three parts:
338338

339339
Nested `intoLayer` closures are used within `application` and `dependencies` sections to claim content for a layer.
340340
These closures are evaluated in the order that they are defined, from top to bottom.
341-
Any content not claimed by an earlier `intoLayer` closure remains availble for subsequent ones to consider.
341+
Any content not claimed by an earlier `intoLayer` closure remains available for subsequent ones to consider.
342342

343-
The `intoLayer` closurer claims content using nested `include` and `exclude` calls.
344-
The `applicaton` closure uses Ant-style patch matching for include/exclude parameters.
343+
The `intoLayer` closure claims content using nested `include` and `exclude` calls.
344+
The `application` closure uses Ant-style patch matching for include/exclude parameters.
345345
The `dependencies` section uses `group:artifact[:version]` patterns.
346346

347347
If no `include` call is made, then all content (not claimed by an earlier closure) is considered.

0 commit comments

Comments
 (0)