diff options
author | Zipeng WU <zipeng.wu@sonarsource.com> | 2021-07-02 09:50:59 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-07-02 20:03:12 +0000 |
commit | b6a5cb0432baee4f4de8c9407be221b069a62668 (patch) | |
tree | ab31959e03c53c224351cf6e6627790249357da2 /sonar-application/build.gradle | |
parent | 96a4d055bf47973e6c4ed4373769d647fde8e0fd (diff) | |
download | sonarqube-b6a5cb0432baee4f4de8c9407be221b069a62668.tar.gz sonarqube-b6a5cb0432baee4f4de8c9407be221b069a62668.zip |
SONAR-14869 SONAR-14919 SONAR-15066 SONAR-15067 SONAR-15088 SONAR-15093 SONAR-15101 SONAR-15125 SONAR-15126 SONAR-15127 update analysers9.0.0.45539
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 074fcd23df4..ef888bc95dd 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 = 268000000 - def maxLength = 289000000 + def minLength = 270000000 + def maxLength = 291000000 def length = archiveFile.get().asFile.length() if (length < minLength) |