From 447daca47a36a930e46912c0ce41c160048fbb30 Mon Sep 17 00:00:00 2001 From: Jacek Date: Thu, 22 Oct 2020 15:38:44 +0200 Subject: SONAR-12686 increase zip size --- sonar-application/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sonar-application/build.gradle') diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index e52d63b5e63..c7f466e1d82 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -178,8 +178,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 220000000 - def maxLength = 247000000 + def minLength = 236000000 + def maxLength = 251000000 def length = archiveFile.get().asFile.length() if (length < minLength) -- cgit v1.2.3