]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-22447 Increase maximum zip size after dependencies update
authorMatteo Mara <matteo.mara@sonarsource.com>
Fri, 28 Jun 2024 14:38:45 +0000 (16:38 +0200)
committersonartech <sonartech@sonarsource.com>
Mon, 1 Jul 2024 20:03:08 +0000 (20:03 +0000)
sonar-application/build.gradle

index f384e6d905abea4a7c4ca1da9cadc2db67a866bc..6b32314e153822d949b09a6fac85d77ba2e3248c 100644 (file)
@@ -338,7 +338,7 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath]) {
 // Check the size of the archive
 zip.doLast {
   def minLength = 340000000
-  def maxLength = 732000000
+  def maxLength = 742000000
 
   def length = archiveFile.get().asFile.length()
   if (length < minLength)