Skip to content

Commit cfe1fe8

Browse files
committedJun 23, 2016
Merge branch '1.3.x'
2 parents 2dc6e5b + bffcb1a commit cfe1fe8

File tree

2 files changed

+56
-3
lines changed

2 files changed

+56
-3
lines changed
 

‎spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc

+40-1
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,8 @@ The following configuration options are available:
485485

486486
|`layout`
487487
|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>>.
489490

490491
|`requiresUnpack`
491492
|A list of dependencies (in the form "`groupId:artifactId`" that must be unpacked from
@@ -495,6 +496,44 @@ The following configuration options are available:
495496

496497

497498

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+
498537
[[build-tool-plugins-understanding-the-gradle-plugin]]
499538
=== Understanding how the Gradle plugin works
500539
When `spring-boot` is applied to your Gradle project a default task named `bootRepackage`

‎spring-boot-tools/spring-boot-maven-plugin/src/site/apt/usage.apt.vm

+16-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,22 @@ Usage
9292
</build>
9393
---
9494

95-
The layout property defaults to a guess based on the archive type (jar or war). For the
96-
<<<PropertiesLauncher>>> the layout is <<<ZIP>>> (even though the output might be a jar file).
95+
The <<<layout>>> property defaults to a guess based on the archive type (<<<jar>>> or <<<war>>>). The
96+
following layouts are available:
97+
98+
* <<<JAR>>>: regular executable JAR layout.
99+
100+
* <<<WAR>>>: executable WAR layout. <<<provided>>> dependencies are placed in <<<WEB-INF/lib-provided>>>
101+
to avoid any clash when the <<<war>>> is deployed in a servlet container.
102+
103+
* <<<ZIP>>> (alias to <<<DIR>>>): similar to the <<<JAR>>> layout using <<<PropertiesLauncher>>>.
104+
105+
* <<<MODULE>>>: Bundle dependencies (excluding those with <<<provided>>> scope) and project resources.
106+
Does not bundle a bootstrap loader.
107+
108+
* <<<NONE>>>: Bundle all dependencies and project resources. Does not bundle a bootstrap loader.
109+
110+
[]
97111

98112
For more detailed examples of how to configure this goal see:
99113

0 commit comments

Comments
 (0)
Please sign in to comment.