diff options
author | Pierre <pierre.guillot@sonarsource.com> | 2020-10-06 09:36:42 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-10-06 20:07:39 +0000 |
commit | 5400f2728b9ba4a6b8f5507e01434079a0d35ed2 (patch) | |
tree | d5e680f2978b8811d2de73d619094cf562c3a45c /sonar-application/build.gradle | |
parent | 1fc3db712519ec57a052b3acf09876f8af3f79ba (diff) | |
download | sonarqube-5400f2728b9ba4a6b8f5507e01434079a0d35ed2.tar.gz sonarqube-5400f2728b9ba4a6b8f5507e01434079a0d35ed2.zip |
increase maximum size of the archive
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r-- | sonar-application/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 4d60a7ac0e4..4df21432eb9 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -179,7 +179,7 @@ zip.doFirst { // Check the size of the archive zip.doLast { def minLength = 220000000 - def maxLength = 240000000 + def maxLength = 245000000 def length = archiveFile.get().asFile.length() if (length < minLength) |