diff options
author | Jacek <jacek.poreda@sonarsource.com> | 2021-07-13 09:27:54 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-07-13 20:03:18 +0000 |
commit | a9e4920672f6bc93398956af84a6d2de8a2a4eec (patch) | |
tree | f22527d9e0b33e527b279bae97b946c648cbbcce /sonar-application/build.gradle | |
parent | d042e9dc429e7d6635686a3edcb4a8fcb323b01a (diff) | |
download | sonarqube-a9e4920672f6bc93398956af84a6d2de8a2a4eec.tar.gz sonarqube-a9e4920672f6bc93398956af84a6d2de8a2a4eec.zip |
SONAR-15163 Upgrade Elasticsearch to 7.13.3
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r-- | sonar-application/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index ef888bc95dd..85fad09ddbd 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -220,8 +220,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 270000000 - def maxLength = 291000000 + def minLength = 273000000 + def maxLength = 294000000 def length = archiveFile.get().asFile.length() if (length < minLength) |