From 5400f2728b9ba4a6b8f5507e01434079a0d35ed2 Mon Sep 17 00:00:00 2001 From: Pierre Date: Tue, 6 Oct 2020 09:36:42 +0200 Subject: [PATCH] increase maximum size of the archive --- 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 4d60a7ac0e4..4df21432eb9 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -179,7 +179,7 @@ zip.doFirst { // Check the size of the archive zip.doLast { def minLength = 220000000 - def maxLength = 240000000 + def maxLength = 245000000 def length = archiveFile.get().asFile.length() if (length < minLength) -- 2.39.5