]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-22119 Increase max size of the zip file after dependency updates
authorMatteo Mara <matteo.mara@sonarsource.com>
Tue, 23 Apr 2024 12:54:55 +0000 (14:54 +0200)
committerMatteo Mara <matteo.mara@sonarsource.com>
Tue, 30 Apr 2024 08:59:02 +0000 (10:59 +0200)
sonar-application/build.gradle

index a43b490a96c11d4d69fc371b95ceddcad36675c7..7e23c4fe0b912eb36af93e2305e0fd90e2ad6f2a 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 = 475000000
+  def maxLength = 476000000
 
   def length = archiveFile.get().asFile.length()
   if (length < minLength)