aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application
diff options
context:
space:
mode:
authorJacek <jacek.poreda@sonarsource.com>2022-02-03 08:48:10 +0100
committersonartech <sonartech@sonarsource.com>2022-02-04 20:02:50 +0000
commitbf1184c7dc0087bf453326257a3dfbbf93ff8db5 (patch)
tree758558f9345f7548ac5f3583f0aa56e93472c865 /sonar-application
parentb8f26423e8abec36f9f3dbd9d083dedcc3810570 (diff)
downloadsonarqube-bf1184c7dc0087bf453326257a3dfbbf93ff8db5.tar.gz
sonarqube-bf1184c7dc0087bf453326257a3dfbbf93ff8db5.zip
[NO-JIRA] Increase allowed zip size
Diffstat (limited to 'sonar-application')
-rw-r--r--sonar-application/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index 670d79c36f1..dc02002fc53 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -279,8 +279,8 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
- def minLength = 270000000
- def maxLength = 285000000
+ def minLength = 272000000
+ def maxLength = 287000000
def length = archiveFile.get().asFile.length()
if (length < minLength)