File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/main/kotlin/org/springdoc/openapi/gradle/plugin Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ dependencies {
49
49
implementation(" khttp:khttp:1.0.0" )
50
50
implementation(" com.google.code.gson:gson:2.8.6" )
51
51
implementation(" org.awaitility:awaitility-kotlin:4.0.3" )
52
- implementation(" com.github.psxpaul:gradle-execfork-plugin:0.1.15 " )
52
+ implementation(" com.github.psxpaul:gradle-execfork-plugin:0.2.0 " )
53
53
implementation(" org.springframework.boot:spring-boot-gradle-plugin:2.5.6" )
54
54
55
55
testImplementation(gradleTestKit())
Original file line number Diff line number Diff line change @@ -42,6 +42,8 @@ open class OpenApiGradlePlugin : Plugin<Project> {
42
42
fork.main = bootRun.mainClass.get()
43
43
fork.jvmArgs = bootRun.jvmArgs
44
44
fork.environment = bootRun.environment
45
+ if (org.gradle.internal.jvm.Jvm .current().toString().startsWith(" 1.8" ))
46
+ fork.killDescendants = false
45
47
true
46
48
}
47
49
}
You can’t perform that action at this time.
0 commit comments