Skip to content
This repository was archived by the owner on Feb 23, 2023. It is now read-only.

Commit 3d789ed

Browse files
committed
Polish documentation
1 parent 9689f5f commit 3d789ed

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

spring-native-docs/src/main/asciidoc/getting-started-buildpacks.adoc

+2-3
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,7 @@ provides out of the box support for building Spring Boot native applications. To
173173
bootBuildImage {
174174
builder = "paketobuildpacks/builder:tiny"
175175
environment = [
176-
"BP_BOOT_NATIVE_IMAGE" : "1",
177-
"BP_BOOT_NATIVE_IMAGE_BUILD_ARGUMENTS": "-Dspring.spel.ignore=true -Dspring.native.remove-yaml-support=true"
176+
"BP_BOOT_NATIVE_IMAGE" : "true"
178177
]
179178
}
180179
----
@@ -184,7 +183,7 @@ bootBuildImage {
184183
tasks.getByName<BootBuildImage>("bootBuildImage") {
185184
builder = "paketobuildpacks/builder:tiny"
186185
environment = mapOf(
187-
"BP_BOOT_NATIVE_IMAGE" to "1"
186+
"BP_BOOT_NATIVE_IMAGE" to "true"
188187
)
189188
}
190189
----

0 commit comments

Comments
 (0)