]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-21512 Increase max size of the archive in order to fit the larger javascript...
authorMatteo Mara <matteo.mara@sonarsource.com>
Wed, 24 Jan 2024 08:09:39 +0000 (09:09 +0100)
committersonartech <sonartech@sonarsource.com>
Wed, 24 Jan 2024 20:03:32 +0000 (20:03 +0000)
sonar-application/build.gradle

index 3faeb8154b08b952462d0d19419527be0358a099..1cc3536178f2ddd432469f87b581d1c2fc8ba3e2 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 = 391000000
+  def maxLength = 442000000
 
   def length = archiveFile.get().asFile.length()
   if (length < minLength)