From: Simon Brandhof Date: Mon, 22 Jun 2020 09:22:50 +0000 (+0200) Subject: Size of zip distribution increased because of recent lib upgrades X-Git-Tag: 8.4.0.35506~80 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=07f5e494c40226a8be6f508a8679241957e1f776;p=sonarqube.git Size of zip distribution increased because of recent lib upgrades --- diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 63f620882f6..572cd7fff79 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -178,7 +178,7 @@ zip.doFirst { // Check the size of the archive zip.doLast { def minLength = 220000000 - def maxLength = 230000000 + def maxLength = 235000000 def length = archiveFile.get().asFile.length() if (length < minLength) throw new GradleException("$archiveName size ($length) too small. Min is $minLength")