Enable local build cache for buildSrc and main project

This commit is contained in:
Andy Wilkinson 2019-09-16 10:38:25 +01:00 committed by Sam Brannen
parent fef09e3522
commit 3b0b173353
4 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1 @@
org.gradle.caching=true

8
buildSrc/settings.gradle Normal file
View File

@ -0,0 +1,8 @@
buildCache {
local {
enabled = true
}
remote(HttpBuildCache) {
enabled = false
}
}

View File

@ -1,4 +1,4 @@
version=5.2.1.BUILD-SNAPSHOT
org.gradle.jvmargs=-Xmx1536M
org.gradle.caching=false
org.gradle.caching=true
org.gradle.parallel=true

View File

@ -5,6 +5,15 @@ pluginManagement {
}
}
buildCache {
local {
enabled = true
}
remote(HttpBuildCache) {
enabled = false
}
}
include "spring-aop"
include "spring-aspects"
include "spring-beans"