@@ -7,7 +7,7 @@ Spring Boot provides build tool plugins for Maven and Gradle. The plugins offer
7
7
variety of features, including the packaging of executable jars. This section provides
8
8
more details on both plugins, as well as some help should you need to extend an
9
9
unsupported build system. If you are just getting started, you might want to read
10
- `` <<using-spring-boot.adoc#using-boot-build-systems>>'' from the
10
+ "` <<using-spring-boot.adoc#using-boot-build-systems>>`" from the
11
11
<<using-spring-boot.adoc#using-boot>> section first.
12
12
--
13
13
@@ -17,7 +17,7 @@ unsupported build system. If you are just getting started, you might want to rea
17
17
== Spring Boot Maven plugin
18
18
The {spring-boot-maven-plugin-site}/[Spring Boot Maven Plugin] provides Spring Boot
19
19
support in Maven, allowing you to package executable jar or war archives and run an
20
- application `` in-place'' . To use it you must be using Maven 3 (or better).
20
+ application "` in-place`" . To use it you must be using Maven 3 (or better).
21
21
22
22
NOTE: Refer to the {spring-boot-maven-plugin-site}/[Spring Boot Maven Plugin Site]
23
23
for complete plugin documentation.
@@ -129,7 +129,7 @@ To build and run a project artifact, you can type the following:
129
129
----
130
130
131
131
To build a war file that is both executable and deployable into an external container you
132
- need to mark the embedded container dependencies as `` provided'' , e.g:
132
+ need to mark the embedded container dependencies as "` provided`" , e.g:
133
133
134
134
[source,xml,indent=0,subs="verbatim,attributes"]
135
135
----
@@ -163,7 +163,7 @@ Advanced configuration options and examples are available in the
163
163
== Spring Boot Gradle plugin
164
164
The Spring Boot Gradle Plugin provides Spring Boot support in Gradle, allowing you to
165
165
package executable jar or war archives, run Spring Boot applications and omit version
166
- information from your `build.gradle` file for `` blessed'' dependencies.
166
+ information from your `build.gradle` file for "` blessed`" dependencies.
167
167
168
168
169
169
@@ -201,7 +201,7 @@ If you are using a milestone or snapshot release you will also need to add appro
201
201
[[build-tool-plugins-gradle-dependencies-without-versions]]
202
202
=== Declaring dependencies without versions
203
203
The `spring-boot` plugin will register a custom Gradle `ResolutionStrategy` with your
204
- build that allows you to omit version numbers when declaring dependencies to `` blessed''
204
+ build that allows you to omit version numbers when declaring dependencies to "` blessed`"
205
205
artifacts. To make use of this functionality, simply declare dependencies in the usual way,
206
206
but leave the version number empty:
207
207
@@ -215,7 +215,7 @@ but leave the version number empty:
215
215
----
216
216
217
217
NOTE: The version of the `spring-boot` gradle plugin that you declare determines the
218
- actual versions of the `` blessed'' dependencies (this ensures that builds are always
218
+ actual versions of the "` blessed`" dependencies (this ensures that builds are always
219
219
repeatable). You should always set the version of the `spring-boot` gradle plugin to the
220
220
actual Spring Boot version that you wish to use. Details of the versions that are
221
221
provided can be found in the <<appendix-dependency-versions, appendix>>.
@@ -237,7 +237,7 @@ example:
237
237
[[build-tool-plugins-gradle-custom-version-management]]
238
238
==== Custom version management
239
239
If is possible to customize the versions used by the `ResolutionStrategy` if you need
240
- to deviate from Spring Boot's `` blessed'' dependencies. Alternative version metadata
240
+ to deviate from Spring Boot's "` blessed`" dependencies. Alternative version metadata
241
241
is consulted using the `versionManagement` configuration. For example:
242
242
243
243
[source,groovy,indent=0,subs="verbatim,attributes"]
@@ -263,7 +263,7 @@ to override version numbers if necessary.
263
263
264
264
[[build-tool-plugins-gradle-exclude-rules]]
265
265
=== Default exclude rules
266
- Gradle handles `` exclude rules'' in a slightly different way to Maven which can cause
266
+ Gradle handles "` exclude rules`" in a slightly different way to Maven which can cause
267
267
unexpected results when using the starter POMs. Specifically, exclusions declared on
268
268
a dependency will not be applied when the dependency can be reached through a different
269
269
path. For example, if a starter POM declares the following:
@@ -296,7 +296,7 @@ which does not have an `exclusion` element.
296
296
297
297
To ensure that correct exclusions are actually applied, the Spring Boot Gradle plugin will
298
298
automatically add exclusion rules. All exclusions defined in the
299
- `spring-boot-dependencies` POM and implicit rules for the `` starter'' POMs will be added.
299
+ `spring-boot-dependencies` POM and implicit rules for the "` starter`" POMs will be added.
300
300
301
301
If you don't want exclusion rules automatically applied you can use the following
302
302
configuration:
@@ -331,7 +331,7 @@ To build and run a project artifact, you can type the following:
331
331
332
332
To build a war file that is both executable and deployable into an external container,
333
333
you need to mark the embedded container dependencies as belonging to a configuration
334
- named `` providedRuntime'' , e.g:
334
+ named "` providedRuntime`" , e.g:
335
335
336
336
[source,groovy,indent=0,subs="verbatim,attributes"]
337
337
----
@@ -362,7 +362,7 @@ named ``providedRuntime'', e.g:
362
362
363
363
[[build-tool-plugins-gradle-running-applications]]
364
364
=== Running a project in-place
365
- To run a project in place without building a jar first you can use the `` bootRun'' task:
365
+ To run a project in place without building a jar first you can use the "` bootRun`" task:
366
366
367
367
[indent=0]
368
368
----
@@ -513,7 +513,7 @@ The following configuration options are available:
513
513
(defaults to a guess based on the archive type).
514
514
515
515
|`requiresUnpack`
516
- |A list of dependencies (in the form `` groupId:artifactId'' that must be unpacked from
516
+ |A list of dependencies (in the form "` groupId:artifactId`" that must be unpacked from
517
517
fat jars in order to run. Items are still packaged into the fat jar, but they will be
518
518
automatically unpacked when it runs.
519
519
|===
@@ -573,7 +573,7 @@ you may find that it includes unnecessary dependencies.
573
573
If you want to use a build tool other than Maven or Gradle, you will likely need to develop
574
574
your own plugin. Executable jars need to follow a specific format and certain entries need
575
575
to be written in an uncompressed form (see the
576
- ' <<appendix-executable-jar-format.adoc#executable-jar, executable jar format>>' section
576
+ _ <<appendix-executable-jar-format.adoc#executable-jar, executable jar format>>_ section
577
577
in the appendix for details).
578
578
579
579
The Spring Boot Maven and Gradle plugins both make use of `spring-boot-loader-tools` to
@@ -637,4 +637,4 @@ technical details of the <<appendix-executable-jar-format.adoc#executable-jar, e
637
637
jar format>> are covered in the appendix.
638
638
639
639
If you have specific build-related questions you can check out the
640
- `<<howto.adoc#howto, how-to>>' guides.
640
+ " `<<howto.adoc#howto, how-to>>`" guides.
0 commit comments