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:
Ryan Ernst 2015-11-16 13:43:17 -08:00
commit cfba6af6c9
1 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,10 @@ allprojects {
subprojects {
group = 'org.elasticsearch'
version = org.elasticsearch.gradle.VersionProperties.elasticsearch
configurations.all {
resolutionStrategy.cacheChangingModulesFor(0, 'seconds')
}
}
if (hasProperty('projectsPrefix') == false) {