From cd15393821cffda8202f59ab4b9f705afda6f068 Mon Sep 17 00:00:00 2001 From: David Cho-Lerat Date: Wed, 10 Apr 2024 18:06:07 +0200 Subject: [PATCH] SONAR-21973 Increase allowed max size of the ZIP archive due to new material-symbols dependency --- 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 841e1a19c80..a43b490a96c 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 = 460000000 + def maxLength = 475000000 def length = archiveFile.get().asFile.length() if (length < minLength) -- 2.39.5