From facfec128dcc79cff9a7d1f0bf1cf538a5d87342 Mon Sep 17 00:00:00 2001 From: Patrick Honkonen Date: Tue, 28 Oct 2025 22:02:46 -0400 Subject: [PATCH] Enable Gradle configuration cache for faster builds - Add org.gradle.configuration-cache=true - Set problems to warn level to identify compatibility issues - Expected 5-15% improvement in Gradle configuration phase - Part of test workflow optimization (Tier 1) --- gradle.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gradle.properties b/gradle.properties index ba4681f190..c1199351e9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,5 +5,7 @@ kotlin.code.style=official kotlin.compilerArgs=-Xjspecify-annotations=strict, -Xtype-enhancement-improvements-strict-mode org.gradle.caching=true +org.gradle.configuration-cache=true +org.gradle.configuration-cache.problems=warn org.gradle.jvmargs=-Xmx4g -XX:+UseParallelGC -Dfile.encoding=UTF-8 org.gradle.parallel=true