From 07f5e494c40226a8be6f508a8679241957e1f776 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Mon, 22 Jun 2020 11:22:50 +0200 Subject: [PATCH] Size of zip distribution increased because of recent lib upgrades --- 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 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") -- 2.39.5