From 254dbf96933d9514add566c62df5e41564a5612b Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Mon, 11 Nov 2024 18:57:03 +0100 Subject: [PATCH] build(Gradle): Enable parallel configuration cache access This should reduce time to configure builds, see [1]. [1]: https://docs.gradle.org/8.11/release-notes.html#configuration-cache-improvements Signed-off-by: Sebastian Schuberth --- gradle.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle.properties b/gradle.properties index df27565a0a41..316d6a7ec186 100644 --- a/gradle.properties +++ b/gradle.properties @@ -17,6 +17,7 @@ org.gradle.caching = true org.gradle.configuration-cache = true +org.gradle.configuration-cache.parallel = true org.gradle.jvmargs = -Xmx2g -XX:MaxMetaspaceSize=1g -Dfile.encoding=UTF-8 org.gradle.kotlin.dsl.allWarningsAsErrors = true org.gradle.parallel = true