aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/build.gradle
diff options
context:
space:
mode:
authorJacek <jacek.poreda@sonarsource.com>2021-03-15 10:18:01 +0100
committersonartech <sonartech@sonarsource.com>2021-03-22 20:08:41 +0000
commit19c40b19b8d128a4c3c6b1c9444cf460a879dd89 (patch)
tree2e5e95291b9551e2f992e82a1ef041419c43bf60 /sonar-application/build.gradle
parent81a898084f609739dd2dacd5af01e35c4954483d (diff)
downloadsonarqube-19c40b19b8d128a4c3c6b1c9444cf460a879dd89.tar.gz
sonarqube-19c40b19b8d128a4c3c6b1c9444cf460a879dd89.zip
SONAR-14529 Upgrade Elasticsearch binaries to 7.11.2
new sources unpack from ElasticSearch 7.11.2 artifact for Linux only (without bundled JDK and under Elastic License 2.0) https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.11.2-no-jdk-linux-x86_64.tar.gz
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r--sonar-application/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index d7b08781919..5e702cc618e 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -164,8 +164,8 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
- def minLength = 238000000
- def maxLength = 258000000
+ def minLength = 340000000
+ def maxLength = 360000000
def length = archiveFile.get().asFile.length()
if (length < minLength)