From: Jacek Date: Tue, 28 Sep 2021 09:26:14 +0000 (+0200) Subject: Increase maximum artifact size X-Git-Tag: 9.2.0.49834~194 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bd8113fc93cbb4b601bfbe3dd751093e1b4d95e2;p=sonarqube.git Increase maximum artifact size --- 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)