From 81f627972232c6f37b407a921a86107b0727ba6e Mon Sep 17 00:00:00 2001 From: Aurelien Poscia Date: Wed, 31 Jan 2024 11:23:37 +0100 Subject: [PATCH] NO-JIRA increase allowed max size of the ZIP archive due to larger analyzer dependencies size --- sonar-application/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5