Merge pull request #36617 from dreis2211

* gh-36617:
  Enable debug option for Kotlin in Gradle Plugin tests

Closes gh-36617
pull/37210/head
Andy Wilkinson 1 year ago
commit a5c3747836

@ -216,8 +216,8 @@ public class GradleBuild {
GradleRunner gradleRunner = GradleRunner.create()
.withProjectDir(this.projectDir)
.withPluginClasspath(pluginClasspath());
if (this.dsl != Dsl.KOTLIN && !this.configurationCache) {
// see https://github.com/gradle/gradle/issues/6862
if (!this.configurationCache) {
// See https://github.com/gradle/gradle/issues/14125
gradleRunner.withDebug(true);
}
if (this.gradleVersion != null) {

Loading…
Cancel
Save