Enable local build cache for buildSrc and main project
This commit is contained in:
parent
fef09e3522
commit
3b0b173353
|
@ -0,0 +1 @@
|
|||
org.gradle.caching=true
|
|
@ -0,0 +1,8 @@
|
|||
buildCache {
|
||||
local {
|
||||
enabled = true
|
||||
}
|
||||
remote(HttpBuildCache) {
|
||||
enabled = false
|
||||
}
|
||||
}
|
|
@ -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
|
||||
|
|
|
@ -5,6 +5,15 @@ pluginManagement {
|
|||
}
|
||||
}
|
||||
|
||||
buildCache {
|
||||
local {
|
||||
enabled = true
|
||||
}
|
||||
remote(HttpBuildCache) {
|
||||
enabled = false
|
||||
}
|
||||
}
|
||||
|
||||
include "spring-aop"
|
||||
include "spring-aspects"
|
||||
include "spring-beans"
|
||||
|
|
Loading…
Reference in New Issue