Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@ open class OpenApiGradlePlugin : Plugin<Project> {
?: bootRun.jvmArgs
environment = customBootRun.environment.orNull?.takeIf { it.isNotEmpty() }
?: bootRun.environment

// Respect javaLauncher configured for bootRun, so Gradle JVM version
// (which may differ) is not used.
javaLauncher.set(bootRun.javaLauncher)

if (Jvm.current().toString().startsWith("1.8")) {
killDescendants = false
}
Expand Down