diff options
author | Matteo Mara <matteo.mara@sonarsource.com> | 2024-06-28 16:38:45 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-07-01 20:03:08 +0000 |
commit | 2e57ffc524b1e7171a2a5c25a92f1ae769184241 (patch) | |
tree | b4f248cbefde913342454256fb6a4534f02cdf2c | |
parent | dd201d4c3bb4e90520bf78227412ae45b9ed8da7 (diff) | |
download | sonarqube-2e57ffc524b1e7171a2a5c25a92f1ae769184241.tar.gz sonarqube-2e57ffc524b1e7171a2a5c25a92f1ae769184241.zip |
SONAR-22447 Increase maximum zip size after dependencies update
-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 f384e6d905a..6b32314e153 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -338,7 +338,7 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath]) { // Check the size of the archive zip.doLast { def minLength = 340000000 - def maxLength = 732000000 + def maxLength = 742000000 def length = archiveFile.get().asFile.length() if (length < minLength) |