Merge branch '3.3.x'

Closes gh-41271
This commit is contained in:
Moritz Halbritter 2024-06-28 13:52:12 +02:00
commit a2378e1439
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ plugins {
// tag::env[]
tasks.named<BootBuildImage>("bootBuildImage") {
environment.set(mapOf("HTTP_PROXY" to "http://proxy.example.com",
environment.putAll(mapOf("HTTP_PROXY" to "http://proxy.example.com",
"HTTPS_PROXY" to "https://proxy.example.com"))
}
// end::env[]

View File

@ -7,7 +7,7 @@ plugins {
// tag::env-runtime[]
tasks.named<BootBuildImage>("bootBuildImage") {
environment.set(mapOf(
environment.putAll(mapOf(
"BPE_DELIM_JAVA_TOOL_OPTIONS" to " ",
"BPE_APPEND_JAVA_TOOL_OPTIONS" to "-XX:+HeapDumpOnOutOfMemoryError"
))

View File

@ -7,7 +7,7 @@ plugins {
// tag::env[]
tasks.named<BootBuildImage>("bootBuildImage") {
environment.set(environment.get() + mapOf("BP_JVM_VERSION" to "17"))
environment.put("BP_JVM_VERSION", "17")
}
// end::env[]