From 0dd7f9993bbbdeede5ee9b55f4bc70716a7f52de Mon Sep 17 00:00:00 2001 From: Matteo Mara Date: Fri, 10 May 2024 13:39:10 +0200 Subject: SONAR-22119 Increase zip max size for the ElasticSearch update --- 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 53c0ec9590f..255dfded337 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 = 727000000 + def maxLength = 732000000 def length = archiveFile.get().asFile.length() if (length < minLength) -- cgit v1.2.3