From f28e6cbdaf56fe9e21afd7c9926ee345604b2b18 Mon Sep 17 00:00:00 2001 From: Matteo Mara Date: Tue, 23 Apr 2024 14:54:55 +0200 Subject: [PATCH] SONAR-22119 Increase max size of the 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 a43b490a96c..7e23c4fe0b9 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 = 475000000 + def maxLength = 476000000 def length = archiveFile.get().asFile.length() if (length < minLength) -- 2.39.5