aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/build.gradle
diff options
context:
space:
mode:
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 e50295de352..a943feb45f7 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -127,8 +127,8 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
- def minLength = 150000000
- def maxLength = 170000000
+ def minLength = 140000000
+ def maxLength = 160000000
def length = new File(distsDir, archiveName).length()
if (length < minLength)
throw new GradleException("$archiveName size ($length) too small. Min is $minLength")