aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/build.gradle
diff options
context:
space:
mode:
authorJacek <jacek.poreda@sonarsource.com>2020-10-22 15:38:44 +0200
committersonartech <sonartech@sonarsource.com>2020-11-05 20:06:20 +0000
commit447daca47a36a930e46912c0ce41c160048fbb30 (patch)
treedfa83aea1623bb39a5ba7b866fd47872b14a964a /sonar-application/build.gradle
parentc2579ec2ecda59175d1c208c55a5dfbb12342f00 (diff)
downloadsonarqube-447daca47a36a930e46912c0ce41c160048fbb30.tar.gz
sonarqube-447daca47a36a930e46912c0ce41c160048fbb30.zip
SONAR-12686 increase 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 e52d63b5e63..c7f466e1d82 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -178,8 +178,8 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
- def minLength = 220000000
- def maxLength = 247000000
+ def minLength = 236000000
+ def maxLength = 251000000
def length = archiveFile.get().asFile.length()
if (length < minLength)