diff options
author | Jacek <jacek.poreda@sonarsource.com> | 2022-02-03 08:48:10 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-02-04 20:02:50 +0000 |
commit | bf1184c7dc0087bf453326257a3dfbbf93ff8db5 (patch) | |
tree | 758558f9345f7548ac5f3583f0aa56e93472c865 /sonar-application | |
parent | b8f26423e8abec36f9f3dbd9d083dedcc3810570 (diff) | |
download | sonarqube-bf1184c7dc0087bf453326257a3dfbbf93ff8db5.tar.gz sonarqube-bf1184c7dc0087bf453326257a3dfbbf93ff8db5.zip |
[NO-JIRA] Increase allowed zip size
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 670d79c36f1..dc02002fc53 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -279,8 +279,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 270000000 - def maxLength = 285000000 + def minLength = 272000000 + def maxLength = 287000000 def length = archiveFile.get().asFile.length() if (length < minLength) |