From 2612442aca357bc07ebce8d17a50afd9547f2891 Mon Sep 17 00:00:00 2001 From: Matteo Mara Date: Mon, 1 Jul 2024 15:29:11 +0200 Subject: [PATCH] SONAR-22447 Increase maximum zip file after dependency updates --- 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 6b32314e153..9b2bfee02af 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 = 742000000 + def maxLength = 744000000 def length = archiveFile.get().asFile.length() if (length < minLength) -- 2.39.5