diff options
author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2024-08-06 08:13:52 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-08-06 20:02:43 +0000 |
commit | e180342ace8cb2a04160f0c9022b2d21e06d83ed (patch) | |
tree | 804a81e21d93f0238f6cdbf142e1f38751afaa67 /sonar-application | |
parent | c8dfeaa4b4ff7020255c4da2d34b78d4602c1edb (diff) | |
download | sonarqube-e180342ace8cb2a04160f0c9022b2d21e06d83ed.tar.gz sonarqube-e180342ace8cb2a04160f0c9022b2d21e06d83ed.zip |
SONAR-22679 Upgrade `iac` plugins to version 1.33.0.11761 (#11469)
Co-authored-by: rudy-regazzoni-sonarsource <rudy-regazzoni-sonarsource@users.noreply.github.com>
Co-authored-by: Rudy Regazzoni <110470341+rudy-regazzoni-sonarsource@users.noreply.github.com>
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 3c7f333dc53..917eab40ddd 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 = 745000000 + def maxLength = 746000000 def length = archiveFile.get().asFile.length() if (length < minLength) |