From cfeb2f4c3c1ce27385f2483b80556f67c9cf3e8b Mon Sep 17 00:00:00 2001 From: Pierre Date: Tue, 15 Jun 2021 16:42:38 +0200 Subject: [PATCH] SONAR-14792 fix minimum zip version --- sonar-application/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.39.5