aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application
diff options
context:
space:
mode:
authorMatteo Mara <matteo.mara@sonarsource.com>2024-01-24 09:09:39 +0100
committersonartech <sonartech@sonarsource.com>2024-01-24 20:03:32 +0000
commitc08d3fec73b53f98315293970dea3ddee4b5c4eb (patch)
tree8db0376d7a0a188e0e41ac0d5755e106b914a629 /sonar-application
parent589bb6eebfedc7131017361eda85ecd0de4870eb (diff)
downloadsonarqube-c08d3fec73b53f98315293970dea3ddee4b5c4eb.tar.gz
sonarqube-c08d3fec73b53f98315293970dea3ddee4b5c4eb.zip
SONAR-21512 Increase max size of the archive in order to fit the larger javascript analyzer with node.js
Diffstat (limited to 'sonar-application')
-rw-r--r--sonar-application/build.gradle2
1 files changed, 1 insertions, 1 deletions
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)