Disable the use of Gradle's daemon when running compatility tests

pull/9675/merge
Andy Wilkinson 7 years ago
parent 742153fc22
commit a2f791287f

@ -156,7 +156,7 @@ public class GradleBuild implements TestRule {
FileCopyUtils.copy(scriptContent,
new FileWriter(new File(this.projectDir, "build.gradle")));
GradleRunner gradleRunner = GradleRunner.create().withProjectDir(this.projectDir)
.forwardOutput();
.withDebug(true);
if (this.gradleVersion != null) {
gradleRunner.withGradleVersion(this.gradleVersion);
}

Loading…
Cancel
Save