From: Pierre Date: Tue, 15 Jun 2021 14:42:38 +0000 (+0200) Subject: SONAR-14792 fix minimum zip version X-Git-Tag: 9.0.0.45539~95 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=cfeb2f4c3c1ce27385f2483b80556f67c9cf3e8b;p=sonarqube.git SONAR-14792 fix minimum zip version --- 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()