From 33d50b1e6c8f1c7112fe5cf231b5492dc62fc4c9 Mon Sep 17 00:00:00 2001 From: shisheng-1 <240274530@qq.com> Date: Fri, 12 Nov 2021 04:27:08 +0800 Subject: [PATCH] Improve GRADLE build Performance --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index e913606b1..a2ddc890a 100644 --- a/build.gradle +++ b/build.gradle @@ -110,6 +110,10 @@ class SingleNodeServerProcess { } allprojects { + tasks.withType(JavaCompile).configureEach { + options.incremental = true + } + group = 'org.springframework.xd' repositories { @@ -1445,4 +1449,4 @@ idea.project.ipr { } } -task build(dependsOn: [':documentation-toolchain:checkDocsLinks', checkProjectDescriptions]) {} +task build(dependsOn: [':documentation-toolchain:checkDocsLinks', checkProjectDescriptions]) {} \ No newline at end of file