diff options
author | Aurelien Poscia <aurelien.poscia@sonarsource.com> | 2024-01-31 11:23:37 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-02-01 20:02:46 +0000 |
commit | 81f627972232c6f37b407a921a86107b0727ba6e (patch) | |
tree | f857d74564ce37c270e320337270cfc2a38f34c6 /sonar-application | |
parent | 2e64b79facf14e78de02361048b43145ec267c58 (diff) | |
download | sonarqube-81f627972232c6f37b407a921a86107b0727ba6e.tar.gz sonarqube-81f627972232c6f37b407a921a86107b0727ba6e.zip |
NO-JIRA increase allowed max size of the ZIP archive due to larger analyzer dependencies size
Diffstat (limited to 'sonar-application')
-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 1cc3536178f..841e1a19c80 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -322,7 +322,7 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath]) { // Check the size of the archive zip.doLast { def minLength = 340000000 - def maxLength = 442000000 + def maxLength = 460000000 def length = archiveFile.get().asFile.length() if (length < minLength) |