From bd8113fc93cbb4b601bfbe3dd751093e1b4d95e2 Mon Sep 17 00:00:00 2001 From: Jacek Date: Tue, 28 Sep 2021 11:26:14 +0200 Subject: [PATCH] Increase maximum artifact size --- 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 edaecf7a4c0..9300bb23e23 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -224,8 +224,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 295000000 - def maxLength = 310000000 + def minLength = 300000000 + def maxLength = 315000000 def length = archiveFile.get().asFile.length() if (length < minLength) -- 2.39.5