Skip to content

Commit a2f7912

Browse files
committed
Disable the use of Gradle's daemon when running compatility tests
1 parent 742153f commit a2f7912

File tree

1 file changed

+1
-1
lines changed
  • spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/testkit

1 file changed

+1
-1
lines changed

spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/testkit/GradleBuild.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public GradleRunner prepareRunner(String... arguments) throws IOException {
156156
FileCopyUtils.copy(scriptContent,
157157
new FileWriter(new File(this.projectDir, "build.gradle")));
158158
GradleRunner gradleRunner = GradleRunner.create().withProjectDir(this.projectDir)
159-
.forwardOutput();
159+
.withDebug(true);
160160
if (this.gradleVersion != null) {
161161
gradleRunner.withGradleVersion(this.gradleVersion);
162162
}

0 commit comments

Comments
 (0)