diff options
author | David Cho-Lerat <david.cho-lerat@sonarsource.com> | 2024-04-10 18:06:07 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-04-12 12:49:16 +0000 |
commit | cd15393821cffda8202f59ab4b9f705afda6f068 (patch) | |
tree | e48c3b80b67467f6f2433b46a172abee32e67a5a /sonar-application | |
parent | c03b271e385f83690b5f6826631cc7c394878807 (diff) | |
download | sonarqube-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.gradle | 2 |
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) |