Merge pull request elastic/elasticsearch#988 from rjernst/disable_snapshot_cache
Build: Do not cache snapshots Original commit: elastic/x-pack-elasticsearch@0fcbaad1ab
This commit is contained in:
commit
cfba6af6c9
|
@ -8,6 +8,10 @@ allprojects {
|
||||||
subprojects {
|
subprojects {
|
||||||
group = 'org.elasticsearch'
|
group = 'org.elasticsearch'
|
||||||
version = org.elasticsearch.gradle.VersionProperties.elasticsearch
|
version = org.elasticsearch.gradle.VersionProperties.elasticsearch
|
||||||
|
|
||||||
|
configurations.all {
|
||||||
|
resolutionStrategy.cacheChangingModulesFor(0, 'seconds')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hasProperty('projectsPrefix') == false) {
|
if (hasProperty('projectsPrefix') == false) {
|
||||||
|
|
Loading…
Reference in New Issue