Extract build cache settings to a dedicated file

Closes gh-23869
This commit is contained in:
Johnny Lim 2019-10-25 22:08:11 +09:00 committed by Sam Brannen
parent f838590300
commit 46a31bc656
3 changed files with 10 additions and 16 deletions

View File

@ -1,8 +1 @@
buildCache {
local {
enabled = true
}
remote(HttpBuildCache) {
enabled = false
}
}
apply from: new File(settingsDir, '../gradle/build-cache-settings.gradle')

View File

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

View File

@ -5,14 +5,7 @@ pluginManagement {
}
}
buildCache {
local {
enabled = true
}
remote(HttpBuildCache) {
enabled = false
}
}
apply from: new File(settingsDir, 'gradle/build-cache-settings.gradle')
include "spring-aop"
include "spring-aspects"