aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application
diff options
context:
space:
mode:
authorJulien HENRY <julien.henry@sonarsource.com>2024-07-23 15:22:13 +0200
committersonartech <sonartech@sonarsource.com>2024-07-24 20:02:47 +0000
commite4313bc4793eaf2a265f55f4bfa867e4c76942cd (patch)
treeaf29396ed8f5140d6bee4fe8ba6360cd1ce43ba9 /sonar-application
parent012bf4a5f40dfa9034e534f81941ce3cdbd5ac13 (diff)
downloadsonarqube-e4313bc4793eaf2a265f55f4bfa867e4c76942cd.tar.gz
sonarqube-e4313bc4793eaf2a265f55f4bfa867e4c76942cd.zip
SONAR-22603 Use generated code for the SARIF parser
Diffstat (limited to 'sonar-application')
-rw-r--r--sonar-application/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index 9b2bfee02af..3c7f333dc53 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -338,7 +338,7 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath]) {
// Check the size of the archive
zip.doLast {
def minLength = 340000000
- def maxLength = 744000000
+ def maxLength = 745000000
def length = archiveFile.get().asFile.length()
if (length < minLength)