]> source.dussan.org Git - sonarqube.git/commitdiff
[NO JIRA] Increase maximum zip size
authorJeremy Davis <jeremy.davis@sonarsource.com>
Wed, 17 May 2023 09:25:04 +0000 (11:25 +0200)
committersonartech <sonartech@sonarsource.com>
Wed, 17 May 2023 13:32:53 +0000 (13:32 +0000)
sonar-application/build.gradle

index 261b5ea7d5d17de6fe048432776c94624ecf05d5..ee3c8fc7c8d9146d9f46bcf77a2f1d1272ab071f 100644 (file)
@@ -327,7 +327,7 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath, downloadElastic
 // Check the size of the archive
 zip.doLast {
   def minLength = 330000000
-  def maxLength = 360000000
+  def maxLength = 361000000
 
   def length = archiveFile.get().asFile.length()
   if (length < minLength)