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 | |
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>
-rw-r--r-- | build.gradle | 2 | ||||
-rw-r--r-- | sonar-application/build.gradle | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index c132a03fcff..0ef2d0a0e83 100644 --- a/build.gradle +++ b/build.gradle @@ -275,7 +275,7 @@ subprojects { dependency 'org.sonarsource.javascript:sonar-javascript-plugin:10.14.0.26080' dependency 'org.sonarsource.php:sonar-php-plugin:3.37.0.12086' dependency 'org.sonarsource.plugins.cayc:sonar-cayc-plugin:2.4.0.2018' - dependency 'org.sonarsource.python:sonar-python-plugin:4.20.0.16410' + dependency 'org.sonarsource.python:sonar-python-plugin:4.21.0.16473' dependency 'org.sonarsource.kotlin:sonar-kotlin-plugin:2.20.0.4382' dependency "org.sonarsource.api.plugin:sonar-plugin-api:$pluginApiVersion" dependency "org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures:$pluginApiVersion" 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) |