From: Matteo Mara Date: Fri, 28 Jun 2024 14:38:45 +0000 (+0200) Subject: SONAR-22447 Increase maximum zip size after dependencies update X-Git-Tag: 10.7.0.96327~412 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2e57ffc524b1e7171a2a5c25a92f1ae769184241;p=sonarqube.git SONAR-22447 Increase maximum zip size after dependencies update --- diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index f384e6d905a..6b32314e153 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -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)