aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application
diff options
context:
space:
mode:
authorAurelien Poscia <aurelien.poscia@sonarsource.com>2024-01-31 11:23:37 +0100
committersonartech <sonartech@sonarsource.com>2024-02-01 20:02:46 +0000
commit81f627972232c6f37b407a921a86107b0727ba6e (patch)
treef857d74564ce37c270e320337270cfc2a38f34c6 /sonar-application
parent2e64b79facf14e78de02361048b43145ec267c58 (diff)
downloadsonarqube-81f627972232c6f37b407a921a86107b0727ba6e.tar.gz
sonarqube-81f627972232c6f37b407a921a86107b0727ba6e.zip
NO-JIRA increase allowed max size of the ZIP archive due to larger analyzer dependencies size
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 1cc3536178f..841e1a19c80 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 = 442000000
+ def maxLength = 460000000
def length = archiveFile.get().asFile.length()
if (length < minLength)