From 227ccc9c470cc48c3cf8140c4398e320a6189f6b Mon Sep 17 00:00:00 2001 From: Jacek Date: Mon, 21 Oct 2019 17:03:39 -0500 Subject: [PATCH] SONAR-12383 Increase zip file size constraint --- sonar-application/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index a7f07a87319..bda9596383d 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -193,8 +193,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 200000000 - def maxLength = 208000000 + def minLength = 202000000 + def maxLength = 210000000 def length = archiveFile.get().asFile.length() if (length < minLength) throw new GradleException("$archiveName size ($length) too small. Min is $minLength") -- 2.39.5