Skip to content

Commit 66247a9

Browse files
committed
Don't use Gradle daemon in Gradle integration tests
There is a chance that the use of the daemon is leading to ClassLoader leaks in our CI Closes: #31603
1 parent 59e47e7 commit 66247a9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

integration-tests/gradle/src/test/java/io/quarkus/gradle/QuarkusGradleWrapperTestBase.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ public BuildResult runGradleWrapper(File projectDir, String... args) throws IOEx
5757
command.add(getGradleWrapperCommand());
5858
command.addAll(getSytemProperties());
5959
command.add("-Dorg.gradle.console=plain");
60+
command.add("-Dorg.gradle.daemon=false");
6061
command.add("--stacktrace");
6162
command.add("--info");
6263
command.addAll(Arrays.asList(args));

0 commit comments

Comments
 (0)