Skip to content

Commit 378d38e

Browse files
author
Phillip Webb
committed
Polish doc formatting
1 parent bfe4240 commit 378d38e

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

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

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -373,9 +373,9 @@ Running this way makes your static classpath resources (i.e. in `src/main/resour
373373
default) reloadable in the live application, which can be helpful at development time.
374374

375375
[[build-tool-plugins-gradle-global-configuration]]
376-
=== Spring Boot Plugin configuration
376+
=== Spring Boot plugin configuration
377377
The gradle plugin automatically extends your build script DSL with a `springBoot` element
378-
for global configuration of the Boot plugin. Set the appropriate properties as you would
378+
for global configuration of the Boot plugin. Set the appropriate properties as you would
379379
with any other Gradle extension (see below for a list of configuration options):
380380

381381
[source,groovy,indent=0,subs="verbatim,attributes"]
@@ -386,6 +386,7 @@ with any other Gradle extension (see below for a list of configuration options):
386386
----
387387

388388

389+
389390
[[build-tool-plugins-gradle-repackage-configuration]]
390391
=== Repackage configuration
391392
The plugin adds a `bootRepackage` task which you can also configure directly, e.g.:
@@ -407,27 +408,28 @@ The following configuration options are available:
407408
|The main class that should be run. If not specified the `mainClassName` project property
408409
will be used or, if the no `mainClassName` id defined the archive will be searched for a
409410
suitable class. "Suitable" means a unique class with a well-formed `main()` method (if
410-
more than one is found the build will fail). You should also be able to specify the main
411-
class name via the "run" task (`main` property) and/or the "startScripts" (`mainClassName`
412-
property) as an alternative to using the "springBoot" configuration.
411+
more than one is found the build will fail). You should also be able to specify the main
412+
class name via the "run" task (`main` property) and/or the "startScripts"
413+
(`mainClassName` property) as an alternative to using the "springBoot" configuration.
413414

414415
|`classifier`
415416
|A file name segment (before the extension) to add to the archive, so that the original is
416-
preserved in its original location. Defaults to null in which case the archive is repackaged
417-
in place. The default is convenient for many purposes, but if you want to use the
418-
original jar as a dependency in another project, it's best to use an extension to define the
419-
executable archive.
417+
preserved in its original location. Defaults to null in which case the archive is
418+
repackaged in place. The default is convenient for many purposes, but if you want to use
419+
the original jar as a dependency in another project, it's best to use an extension to
420+
define the executable archive.
420421

421422
|`withJarTask`
422-
|The name of the `Jar` task (defaults to all) which is used to locate the archive to repackage.
423+
|The name of the `Jar` task (defaults to all) which is used to locate the archive to
424+
repackage.
423425

424426
|`customConfiguration`
425427
|The name of the custom configuration whuch is used to populate the nested lib directory
426-
(without specifying this you get all compile and runtime dependencies).
427-
428+
(without specifying this you get all compile and runtime dependencies).
428429
|===
429430

430431

432+
431433
[[build-tool-plugins-gradle-repackage-custom-configuration]]
432434
=== Repackage with custom Gradle configuration
433435
Sometimes it may be more appropriate to not package default dependencies resolved from

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1832,6 +1832,7 @@ own beans:
18321832
----
18331833

18341834

1835+
18351836
[[boot-features-integration]]
18361837
== Spring Integration
18371838
Spring Integration provides abstractions over messaging and also other transports such as

spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ section if you want to use it:
125125
</build>
126126
----
127127

128-
NOTE: If you use the Spring Boot starter parent pom, you only need to
129-
add the plugin, there is no need for to configure it unless you want
130-
to change the settings defined in the parent.
128+
NOTE: If you use the Spring Boot starter parent pom, you only need to add the plugin,
129+
there is no need for to configure it unless you want to change the settings defined in
130+
the parent.
131131

132132

133133

0 commit comments

Comments
 (0)