From 6f911359f350ee624ea62119d7136887a5d40790 Mon Sep 17 00:00:00 2001 From: shisheng-1 <240274530@qq.com> Date: Fri, 12 Nov 2021 09:36:45 +0800 Subject: [PATCH] Improve GRADLE build Performance --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index 778e7725..4b0bd8ae 100644 --- a/build.gradle +++ b/build.gradle @@ -30,6 +30,10 @@ plugins { } allprojects { + tasks.withType(JavaCompile).configureEach { + options.fork = true + } + apply plugin: 'eclipse'; apply plugin: 'idea'; apply plugin: 'jacoco'