]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-12383 Increase zip file size constraint
authorJacek <jacek.poreda@sonarsource.com>
Mon, 21 Oct 2019 22:03:39 +0000 (17:03 -0500)
committerSonarTech <sonartech@sonarsource.com>
Tue, 12 Nov 2019 19:21:07 +0000 (20:21 +0100)
sonar-application/build.gradle

index a7f07a8731960bb5d099e87dc06fd17dd4dc276e..bda9596383d3634a8168404063122b26da3ada9f 100644 (file)
@@ -193,8 +193,8 @@ zip.doFirst {
 }
 // Check the size of the archive
 zip.doLast {
-  def minLength = 200000000
-  def maxLength = 208000000
+  def minLength = 202000000
+  def maxLength = 210000000
   def length = archiveFile.get().asFile.length()
   if (length < minLength)
     throw new GradleException("$archiveName size ($length) too small. Min is $minLength")