From 70cd3fb194cb5d5d966a368ea3b7cda30253b6d8 Mon Sep 17 00:00:00 2001 From: Jacek Date: Fri, 12 Feb 2021 18:23:29 +0100 Subject: [PATCH] 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 abfeca30e91..fafe614870a 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -164,8 +164,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 236000000 - def maxLength = 256000000 + def minLength = 237000000 + def maxLength = 257000000 def length = archiveFile.get().asFile.length() if (length < minLength) -- 2.39.5