aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application
diff options
context:
space:
mode:
authorMatteo Mara <matteo.mara@sonarsource.com>2024-04-23 14:54:55 +0200
committerMatteo Mara <matteo.mara@sonarsource.com>2024-04-30 10:59:02 +0200
commitf28e6cbdaf56fe9e21afd7c9926ee345604b2b18 (patch)
treea10a40cdcafc1768015bba8b93464fa4e48950f9 /sonar-application
parent5f8bafec15ec50285630d05bde7167ccddb4e78d (diff)
downloadsonarqube-f28e6cbdaf56fe9e21afd7c9926ee345604b2b18.tar.gz
sonarqube-f28e6cbdaf56fe9e21afd7c9926ee345604b2b18.zip
SONAR-22119 Increase max size of the zip file after dependency updates
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 a43b490a96c..7e23c4fe0b9 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 = 475000000
+ def maxLength = 476000000
def length = archiveFile.get().asFile.length()
if (length < minLength)