]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-22447 Increase maximum zip file after dependency updates
authorMatteo Mara <matteo.mara@sonarsource.com>
Mon, 1 Jul 2024 13:29:11 +0000 (15:29 +0200)
committersonartech <sonartech@sonarsource.com>
Thu, 4 Jul 2024 20:02:36 +0000 (20:02 +0000)
sonar-application/build.gradle

index 6b32314e153822d949b09a6fac85d77ba2e3248c..9b2bfee02aff84258fda1b3a5670151241f595da 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 = 742000000
+  def maxLength = 744000000
 
   def length = archiveFile.get().asFile.length()
   if (length < minLength)