Skip to content

Commit

Permalink
Merge pull request #1110 from shisheng-1/Modify_GRADLE_1
Browse files Browse the repository at this point in the history
Improve GRADLE build Performance
  • Loading branch information
johnmcclean authored May 11, 2022
2 parents 4e2e3f9 + 3b27eb4 commit 55f9c8d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,11 @@ subprojects {
task wrapper(type: Wrapper) {
gradleVersion = '2.14.1'
}

allprojects {
tasks.withType(JavaCompile).configureEach {
options.fork = true
options.incremental = true
}

}

0 comments on commit 55f9c8d

Please sign in to comment.