]> source.dussan.org Git - sonarqube.git/commitdiff
[NO-JIRA] Increase allowed zip size
authorJacek <jacek.poreda@sonarsource.com>
Thu, 3 Feb 2022 07:48:10 +0000 (08:48 +0100)
committersonartech <sonartech@sonarsource.com>
Fri, 4 Feb 2022 20:02:50 +0000 (20:02 +0000)
sonar-application/build.gradle

index 670d79c36f1017b88d260337c53672e6cc7de3e9..dc02002fc53335b02c68f7cc8c3c3eb76be00472 100644 (file)
@@ -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)