Fix Asciidoc build step

See gh-24326
This commit is contained in:
dreis2211 2020-12-03 23:08:43 +01:00 committed by Madhura Bhave
parent 977140053b
commit b9ec88a7a5
1 changed files with 10 additions and 4 deletions

View File

@ -733,14 +733,20 @@ For instance, the two examples below produce the same result:
[source,yaml,indent=0,configblocks]
----
spring.config.import=my.properties
my.property=value
spring:
config:
import: my.properties
my:
property: value
----
[source,yaml,indent=0,configblocks]
----
my.property=value
spring.config.import=my.properties
my:
property: value
spring:
config:
import: my.properties
----
In both of the above examples, the values from the `my.properties` file will take precedence over the file that triggered its import.