]> source.dussan.org Git - sonarqube.git/commitdiff
NO-JIRA increase allowed max size of the ZIP archive due to larger analyzer dependenc...
authorAurelien Poscia <aurelien.poscia@sonarsource.com>
Wed, 31 Jan 2024 10:23:37 +0000 (11:23 +0100)
committersonartech <sonartech@sonarsource.com>
Thu, 1 Feb 2024 20:02:46 +0000 (20:02 +0000)
sonar-application/build.gradle

index 1cc3536178f2ddd432469f87b581d1c2fc8ba3e2..841e1a19c80863c642a93f5e23eba75c330d4ab7 100644 (file)
@@ -322,7 +322,7 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath]) {
 // Check the size of the archive
 zip.doLast {
   def minLength = 340000000
-  def maxLength = 442000000
+  def maxLength = 460000000
 
   def length = archiveFile.get().asFile.length()
   if (length < minLength)