From fa961028166422fa15a4574e9c08da4848ceac4f Mon Sep 17 00:00:00 2001 From: Etienne Dechamps Date: Thu, 25 Sep 2025 15:00:59 +0000 Subject: [PATCH] Disable Gradle parallel execution Since the move to Gradle 9 this seems to cause breakage in some setups, e.g. microsoft/vscode-gradle#1712. --- gradle.properties | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 2e9d9fc306..301cefe0a6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -29,7 +29,8 @@ kotlin.daemon.jvmargs=-Dfile.encoding=UTF-8 -XX:+UseG1GC -XX:SoftRefLRUPolicyMSP # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects -org.gradle.parallel=true +# Currently this is disabled as it causes problems in some setups, e.g. https://github.com/microsoft/vscode-gradle/issues/1712 +org.gradle.parallel=false # Not encouraged by Gradle and can produce weird results. Wait for isolated projects instead. org.gradle.configureondemand=false