diff options
author | Jacek <jacek.poreda@sonarsource.com> | 2019-10-21 17:03:39 -0500 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-11-12 20:21:07 +0100 |
commit | 227ccc9c470cc48c3cf8140c4398e320a6189f6b (patch) | |
tree | 35ac261eeb6f06490b1a4c12fc5b782e12093f2b | |
parent | 7710fea38462f0a0207f47971abb2ee74bfa6106 (diff) | |
download | sonarqube-227ccc9c470cc48c3cf8140c4398e320a6189f6b.tar.gz sonarqube-227ccc9c470cc48c3cf8140c4398e320a6189f6b.zip |
SONAR-12383 Increase zip file size constraint
-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 a7f07a87319..bda9596383d 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -193,8 +193,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 200000000 - def maxLength = 208000000 + def minLength = 202000000 + def maxLength = 210000000 def length = archiveFile.get().asFile.length() if (length < minLength) throw new GradleException("$archiveName size ($length) too small. Min is $minLength") |