From: Pierre Date: Tue, 6 Oct 2020 07:36:42 +0000 (+0200) Subject: increase maximum size of the archive X-Git-Tag: 8.6.0.39681~194 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5400f2728b9ba4a6b8f5507e01434079a0d35ed2;p=sonarqube.git increase maximum size of the archive --- 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)