Skip to content

Commit a03af08

Browse files
committed
Upgrade to Gradle 6.9.1; fork JavaCompile
Attempt to rely on the forked process for compilation according these docs: https://docs.gradle.org/current/userguide/performance.html#compiler_daemon
1 parent 34d2b09 commit a03af08

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,10 @@ configure(javaProjects) { subproject ->
217217
}
218218
}
219219

220+
tasks.withType(JavaCompile).configureEach {
221+
options.fork = true
222+
}
223+
220224
eclipse {
221225
project {
222226
natures += 'org.springframework.ide.eclipse.core.springnature'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionSha256Sum=8de6efc274ab52332a9c820366dd5cf5fc9d35ec7078fd70c8ec6913431ee610
6+
distributionSha256Sum=8c12154228a502b784f451179846e518733cf856efc7d45b2e6691012977b2fe

0 commit comments

Comments
 (0)