aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application
diff options
context:
space:
mode:
authorDavid Cho-Lerat <david.cho-lerat@sonarsource.com>2024-04-10 18:06:07 +0200
committersonartech <sonartech@sonarsource.com>2024-04-12 12:49:16 +0000
commitcd15393821cffda8202f59ab4b9f705afda6f068 (patch)
treee48c3b80b67467f6f2433b46a172abee32e67a5a /sonar-application
parentc03b271e385f83690b5f6826631cc7c394878807 (diff)
downloadsonarqube-cd15393821cffda8202f59ab4b9f705afda6f068.tar.gz
sonarqube-cd15393821cffda8202f59ab4b9f705afda6f068.zip
SONAR-21973 Increase allowed max size of the ZIP archive due to new material-symbols dependency
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 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)