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