aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application
diff options
context:
space:
mode:
authorJacek <jacek.poreda@sonarsource.com>2021-09-08 11:14:57 +0200
committersonartech <sonartech@sonarsource.com>2021-09-13 20:03:33 +0000
commit86f2c502104fbc03eb5aac19598e9b5c2e7290b8 (patch)
tree991eeb3f2d83d402a730ba912e0770aa9bbe0146 /sonar-application
parent144e0f8903ef6bbcd24eb8aba10b43fcf09138c8 (diff)
downloadsonarqube-86f2c502104fbc03eb5aac19598e9b5c2e7290b8.tar.gz
sonarqube-86f2c502104fbc03eb5aac19598e9b5c2e7290b8.zip
SONAR-15375 Fix SSF-191
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 652f8febbbe..edaecf7a4c0 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -224,8 +224,8 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
- def minLength = 274000000
- def maxLength = 295000000
+ def minLength = 295000000
+ def maxLength = 310000000
def length = archiveFile.get().asFile.length()
if (length < minLength)