@@ -485,7 +485,8 @@ The following configuration options are available:
485
485
486
486
|`layout`
487
487
|The type of archive, corresponding to how the dependencies are laid out inside
488
- (defaults to a guess based on the archive type).
488
+ (defaults to a guess based on the archive type). See
489
+ <<build-tool-plugins-gradle-configuration-layouts,available layouts for more details>>.
489
490
490
491
|`requiresUnpack`
491
492
|A list of dependencies (in the form "`groupId:artifactId`" that must be unpacked from
@@ -495,6 +496,44 @@ The following configuration options are available:
495
496
496
497
497
498
499
+ [[build-tool-plugins-gradle-configuration-layouts]]
500
+ ==== Available layouts
501
+
502
+ The `layout` attribute configures the format of the archive and whether the bootstrap
503
+ loader should be included or not. The following layouts are available:
504
+
505
+ [cols="2,4,1"]
506
+ |===
507
+ |Name |Description |Executable
508
+
509
+ |`JAR`
510
+ |Regular executable
511
+ <<appendix-executable-jar-format.adoc#executable-jar-jar-file-structure,JAR layout>>.
512
+ |Yes
513
+
514
+ |`WAR`
515
+ |Executable
516
+ <<appendix-executable-jar-format.adoc#executable-jar-war-file-structure,WAR layout>>.
517
+ `provided` dependencies are placed in `WEB-INF/lib-provided` to avoid any clash when
518
+ the `war` is deployed in a servlet container.
519
+ |Yes
520
+
521
+ |`ZIP` (alias to `DIR`)
522
+ |Similar to `JAR` layout, using
523
+ <<appendix-executable-jar-format.adoc#executable-jar-property-launcher-features,`PropertiesLauncher`>>.
524
+ | Yes
525
+
526
+ |`MODULE`
527
+ |Bundle dependencies (excluding those with `provided` scope) and project resources.
528
+ |No
529
+
530
+ |`NONE`
531
+ |Bundle all dependencies and project resources.
532
+ |No
533
+ |===
534
+
535
+
536
+
498
537
[[build-tool-plugins-understanding-the-gradle-plugin]]
499
538
=== Understanding how the Gradle plugin works
500
539
When `spring-boot` is applied to your Gradle project a default task named `bootRepackage`
0 commit comments