aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/build.gradle
diff options
context:
space:
mode:
authorJacek <jacek.poreda@sonarsource.com>2021-02-12 18:23:29 +0100
committersonartech <sonartech@sonarsource.com>2021-02-12 20:07:13 +0000
commit70cd3fb194cb5d5d966a368ea3b7cda30253b6d8 (patch)
tree10aeae7a9b55a6922a1372506e98fe2a20723b5c /sonar-application/build.gradle
parentde518feff484b416ad16d2861598f5954e10e92c (diff)
downloadsonarqube-70cd3fb194cb5d5d966a368ea3b7cda30253b6d8.tar.gz
sonarqube-70cd3fb194cb5d5d966a368ea3b7cda30253b6d8.zip
Increase allowed zip size
Diffstat (limited to 'sonar-application/build.gradle')
-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 abfeca30e91..fafe614870a 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -164,8 +164,8 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
- def minLength = 236000000
- def maxLength = 256000000
+ def minLength = 237000000
+ def maxLength = 257000000
def length = archiveFile.get().asFile.length()
if (length < minLength)