From c08d3fec73b53f98315293970dea3ddee4b5c4eb Mon Sep 17 00:00:00 2001 From: Matteo Mara Date: Wed, 24 Jan 2024 09:09:39 +0100 Subject: [PATCH] SONAR-21512 Increase max size of the archive in order to fit the larger javascript analyzer with node.js --- 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 3faeb8154b0..1cc3536178f 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 = 391000000 + def maxLength = 442000000 def length = archiveFile.get().asFile.length() if (length < minLength) -- 2.39.5