From bf1184c7dc0087bf453326257a3dfbbf93ff8db5 Mon Sep 17 00:00:00 2001 From: Jacek Date: Thu, 3 Feb 2022 08:48:10 +0100 Subject: [PATCH] [NO-JIRA] Increase allowed zip size --- sonar-application/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 670d79c36f1..dc02002fc53 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -279,8 +279,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 270000000 - def maxLength = 285000000 + def minLength = 272000000 + def maxLength = 287000000 def length = archiveFile.get().asFile.length() if (length < minLength) -- 2.39.5