Merge branch '3.3.x'

This commit is contained in:
Scott Frederick
2024-07-01 11:24:00 -05:00
27 changed files with 38 additions and 38 deletions

View File

@@ -250,7 +250,7 @@ For more details, see also xref:build-image.adoc#build-image.examples[examples].
[[build-image.customization.tags]]
=== Tags format
=== Tags Format
The values provided to the `tags` option should be *full* image references.
The accepted format is `[domainHost:port/][path/]name[:tag][@digest]`.

View File

@@ -60,7 +60,7 @@ You can now retrieve the `test.server.port` system property in any of your integ
[[integration-tests.examples.jmx-port]]
=== Customize JMX port
=== Customize JMX Port
The `jmxPort` property allows to customize the port the plugin uses to communicate with the Spring Boot application.

View File

@@ -94,9 +94,9 @@ include::example$using/no-starter-parent-override-dependencies-pom.xml[tags=no-s
[[using.overriding-command-line]]
== Overriding settings on the command-line
== Overriding Settings on the Command Line
The plugin offers a number of user properties, starting with `spring-boot`, to let you customize the configuration from the command-line.
The plugin offers a number of user properties, starting with `spring-boot`, to let you customize the configuration from the command line.
For instance, you could tune the profiles to enable when running the application as follows:
@@ -105,7 +105,7 @@ For instance, you could tune the profiles to enable when running the application
$ mvn spring-boot:run -Dspring-boot.run.profiles=dev,local
----
If you want to both have a default while allowing it to be overridden on the command-line, you should use a combination of a user-provided project property and MOJO configuration.
If you want to both have a default while allowing it to be overridden on the command line, you should use a combination of a user-provided project property and MOJO configuration.
[source,xml,indent=0,subs="verbatim,attributes"]
----
@@ -113,7 +113,7 @@ include::example$using/default-and-override-pom.xml[tags=default-and-override]
----
The above makes sure that `local` and `dev` are enabled by default.
Now a dedicated property has been exposed, this can be overridden on the command-line as well:
Now a dedicated property has been exposed, this can be overridden on the command line as well:
[source,shell]
----