diff options
author | Jeremy Davis <jeremy.davis@sonarsource.com> | 2023-05-17 11:25:04 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-05-17 13:32:53 +0000 |
commit | a4e7896a64696dab6beacc0219534060a755ad20 (patch) | |
tree | 76b476e72947f8e2cb655ae964660bc831a9ea88 /sonar-application/build.gradle | |
parent | ad0029cacacc54b36830b32bd68d30034a671b5d (diff) | |
download | sonarqube-a4e7896a64696dab6beacc0219534060a755ad20.tar.gz sonarqube-a4e7896a64696dab6beacc0219534060a755ad20.zip |
[NO JIRA] Increase maximum zip size
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 261b5ea7d5d..ee3c8fc7c8d 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -327,7 +327,7 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath, downloadElastic // Check the size of the archive zip.doLast { def minLength = 330000000 - def maxLength = 360000000 + def maxLength = 361000000 def length = archiveFile.get().asFile.length() if (length < minLength) |