diff options
author | Matteo Mara <matteo.mara@sonarsource.com> | 2024-04-23 14:54:55 +0200 |
---|---|---|
committer | Matteo Mara <matteo.mara@sonarsource.com> | 2024-04-30 10:59:02 +0200 |
commit | f28e6cbdaf56fe9e21afd7c9926ee345604b2b18 (patch) | |
tree | a10a40cdcafc1768015bba8b93464fa4e48950f9 /sonar-application | |
parent | 5f8bafec15ec50285630d05bde7167ccddb4e78d (diff) | |
download | sonarqube-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.gradle | 2 |
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) |