Skip to content

Commit a5c3747

Browse files
committed
Merge pull request #36617 from dreis2211
* gh-36617: Enable debug option for Kotlin in Gradle Plugin tests Closes gh-36617
2 parents 87554fb + 42e8907 commit a5c3747

File tree

1 file changed

+2
-2
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-gradle-test-support/src/main/java/org/springframework/boot/testsupport/gradle/testkit

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-tools/spring-boot-gradle-test-support/src/main/java/org/springframework/boot/testsupport/gradle/testkit/GradleBuild.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ public GradleRunner prepareRunner(String... arguments) throws IOException {
216216
GradleRunner gradleRunner = GradleRunner.create()
217217
.withProjectDir(this.projectDir)
218218
.withPluginClasspath(pluginClasspath());
219-
if (this.dsl != Dsl.KOTLIN && !this.configurationCache) {
220-
// see https://github.com/gradle/gradle/issues/6862
219+
if (!this.configurationCache) {
220+
// See https://github.com/gradle/gradle/issues/14125
221221
gradleRunner.withDebug(true);
222222
}
223223
if (this.gradleVersion != null) {

0 commit comments

Comments
 (0)