From: Jacek Date: Thu, 3 Feb 2022 07:48:10 +0000 (+0100) Subject: [NO-JIRA] Increase allowed zip size X-Git-Tag: 9.4.0.54424~237 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bf1184c7dc0087bf453326257a3dfbbf93ff8db5;p=sonarqube.git [NO-JIRA] Increase allowed zip size --- diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 670d79c36f1..dc02002fc53 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -279,8 +279,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 270000000 - def maxLength = 285000000 + def minLength = 272000000 + def maxLength = 287000000 def length = archiveFile.get().asFile.length() if (length < minLength)