Extract build cache settings to a dedicated file
Closes gh-23869
This commit is contained in:
parent
f838590300
commit
46a31bc656
|
@ -1,8 +1 @@
|
|||
buildCache {
|
||||
local {
|
||||
enabled = true
|
||||
}
|
||||
remote(HttpBuildCache) {
|
||||
enabled = false
|
||||
}
|
||||
}
|
||||
apply from: new File(settingsDir, '../gradle/build-cache-settings.gradle')
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
buildCache {
|
||||
local {
|
||||
enabled = true
|
||||
}
|
||||
remote(HttpBuildCache) {
|
||||
enabled = false
|
||||
}
|
||||
}
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue