From: Sébastien Lesaint Date: Thu, 27 Jun 2019 12:37:27 +0000 (+0200) Subject: SONAR-11849 increase SQ max size X-Git-Tag: 8.0~435 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5041bd035d6937e94e34f8377a6cffd0a38a1d14;p=sonarqube.git SONAR-11849 increase SQ max size new SonarCSS plugin added 970Kb --- diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 6db87116f7b..f00be05715a 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -211,7 +211,7 @@ zip.doFirst { // Check the size of the archive zip.doLast { def minLength = 198000000 - def maxLength = 207000000 + def maxLength = 208000000 def length = archiveFile.get().asFile.length() if (length < minLength) throw new GradleException("$archiveName size ($length) too small. Min is $minLength")