From 5041bd035d6937e94e34f8377a6cffd0a38a1d14 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Lesaint?= Date: Thu, 27 Jun 2019 14:37:27 +0200 Subject: [PATCH] SONAR-11849 increase SQ max size new SonarCSS plugin added 970Kb --- 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 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") -- 2.39.5