diff options
author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2024-08-20 10:59:37 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-08-20 20:02:55 +0000 |
commit | 8c468972d855a3de2c85537a4cae1adaeca2ca7f (patch) | |
tree | 0e5b07a013a9be1307e9401140f8324b36cc2e7b /sonar-application | |
parent | 4ebc8bfc565e1521cad508e97f7bbc75ab2dd4bc (diff) | |
download | sonarqube-8c468972d855a3de2c85537a4cae1adaeca2ca7f.tar.gz sonarqube-8c468972d855a3de2c85537a4cae1adaeca2ca7f.zip |
SONAR-22822 Upgrade `python` plugins to version 4.21.0.16473 (#11565)
Co-authored-by: joke1196 <joke1196@users.noreply.github.com>
Co-authored-by: Ghislain Piot <ghislain.piot@sonarsource.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 917eab40ddd..544c2e3fc3d 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 = 746000000 + def maxLength = 748000000 def length = archiveFile.get().asFile.length() if (length < minLength) |