From: Aurelien Poscia Date: Wed, 31 Jan 2024 10:23:37 +0000 (+0100) Subject: NO-JIRA increase allowed max size of the ZIP archive due to larger analyzer dependenc... X-Git-Tag: 10.4.0.87286~32 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=81f627972232c6f37b407a921a86107b0727ba6e;p=sonarqube.git NO-JIRA increase allowed max size of the ZIP archive due to larger analyzer dependencies size --- diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 1cc3536178f..841e1a19c80 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -322,7 +322,7 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath]) { // Check the size of the archive zip.doLast { def minLength = 340000000 - def maxLength = 442000000 + def maxLength = 460000000 def length = archiveFile.get().asFile.length() if (length < minLength)