diff options
author | Pierre Guillot <50145663+pierre-guillot-sonarsource@users.noreply.github.com> | 2019-12-13 17:05:22 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-12-16 20:46:14 +0100 |
commit | bd32acfce2d78cd9653952bf47b142b5c2ecda96 (patch) | |
tree | a23a8c2574864dbf109cdbff2e310a7e5f9d59a1 /sonar-application | |
parent | a0cafaa388f8d169c3d05f082ad8d4253a431fcf (diff) | |
download | sonarqube-bd32acfce2d78cd9653952bf47b142b5c2ecda96.tar.gz sonarqube-bd32acfce2d78cd9653952bf47b142b5c2ecda96.zip |
SONAR-12775 Gitlab MR live update
Diffstat (limited to 'sonar-application')
-rw-r--r-- | sonar-application/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 98274318035..662fdda85bd 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -177,8 +177,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 202000000 - def maxLength = 211000000 + def minLength = 203000000 + def maxLength = 212000000 def length = archiveFile.get().asFile.length() if (length < minLength) throw new GradleException("$archiveName size ($length) too small. Min is $minLength") |