aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/build.gradle
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2019-06-27 14:37:27 +0200
committersonartech <sonartech@sonarsource.com>2019-06-28 08:45:58 +0200
commit5041bd035d6937e94e34f8377a6cffd0a38a1d14 (patch)
treec7f07ec51f6ff9933ca0a7071fa991602e5e5cdc /sonar-application/build.gradle
parent97a815175c48fbd63bebb607ff4a4a6d12e5164c (diff)
downloadsonarqube-5041bd035d6937e94e34f8377a6cffd0a38a1d14.tar.gz
sonarqube-5041bd035d6937e94e34f8377a6cffd0a38a1d14.zip
SONAR-11849 increase SQ max size
new SonarCSS plugin added 970Kb
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r--sonar-application/build.gradle2
1 files changed, 1 insertions, 1 deletions
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")