From 22f27ef34369af9581a068f02ac9423f0aa2aec2 Mon Sep 17 00:00:00 2001 From: Sebastian Hartte Date: Sun, 24 Dec 2023 13:32:14 +0100 Subject: [PATCH] Enable Gradle Caching + Parallel --- gradle.properties | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gradle.properties b/gradle.properties index 262fa353..b793b429 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,7 @@ +# Enabling the Gradle build-cache is critical for performance +org.gradle.caching=true +org.gradle.parallel=true + # Also add exports for google-java-format to work in modern java org.gradle.jvmargs=--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \ --add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \