aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/build.gradle
diff options
context:
space:
mode:
authorPierre <pierre.guillot@sonarsource.com>2021-06-15 16:42:38 +0200
committersonartech <sonartech@sonarsource.com>2021-06-16 20:03:04 +0000
commitcfeb2f4c3c1ce27385f2483b80556f67c9cf3e8b (patch)
treeb374d5effef46e68da316ff695d452e7b1e84163 /sonar-application/build.gradle
parentf2b322485a36bf7dea7fbd887efbda5d5374a145 (diff)
downloadsonarqube-cfeb2f4c3c1ce27385f2483b80556f67c9cf3e8b.tar.gz
sonarqube-cfeb2f4c3c1ce27385f2483b80556f67c9cf3e8b.zip
SONAR-14792 fix minimum zip version
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r--sonar-application/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index 59d88509fa0..074fcd23df4 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -220,7 +220,7 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
- def minLength = 269000000
+ def minLength = 268000000
def maxLength = 289000000
def length = archiveFile.get().asFile.length()