commit
a2378e1439
|
@ -7,7 +7,7 @@ plugins {
|
||||||
|
|
||||||
// tag::env[]
|
// tag::env[]
|
||||||
tasks.named<BootBuildImage>("bootBuildImage") {
|
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"))
|
"HTTPS_PROXY" to "https://proxy.example.com"))
|
||||||
}
|
}
|
||||||
// end::env[]
|
// end::env[]
|
||||||
|
|
|
@ -7,7 +7,7 @@ plugins {
|
||||||
|
|
||||||
// tag::env-runtime[]
|
// tag::env-runtime[]
|
||||||
tasks.named<BootBuildImage>("bootBuildImage") {
|
tasks.named<BootBuildImage>("bootBuildImage") {
|
||||||
environment.set(mapOf(
|
environment.putAll(mapOf(
|
||||||
"BPE_DELIM_JAVA_TOOL_OPTIONS" to " ",
|
"BPE_DELIM_JAVA_TOOL_OPTIONS" to " ",
|
||||||
"BPE_APPEND_JAVA_TOOL_OPTIONS" to "-XX:+HeapDumpOnOutOfMemoryError"
|
"BPE_APPEND_JAVA_TOOL_OPTIONS" to "-XX:+HeapDumpOnOutOfMemoryError"
|
||||||
))
|
))
|
||||||
|
|
|
@ -7,7 +7,7 @@ plugins {
|
||||||
|
|
||||||
// tag::env[]
|
// tag::env[]
|
||||||
tasks.named<BootBuildImage>("bootBuildImage") {
|
tasks.named<BootBuildImage>("bootBuildImage") {
|
||||||
environment.set(environment.get() + mapOf("BP_JVM_VERSION" to "17"))
|
environment.put("BP_JVM_VERSION", "17")
|
||||||
}
|
}
|
||||||
// end::env[]
|
// end::env[]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue