diff options
author | Philippe Perrin <philippe.perrin@sonarsource.com> | 2023-06-13 13:20:02 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-06-14 12:35:53 +0000 |
commit | 213f652efd570d4b7df3b89e6b31e48c5851f9aa (patch) | |
tree | 992107390ef589c6280e0a22cf913d8647d93f11 /sonar-application/build.gradle | |
parent | 48b8689538428a89594ded182d8572f9959bba18 (diff) | |
download | sonarqube-213f652efd570d4b7df3b89e6b31e48c5851f9aa.tar.gz sonarqube-213f652efd570d4b7df3b89e6b31e48c5851f9aa.zip |
SONAR-19410 Embed the Clean as You Code plugin
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r-- | sonar-application/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index bc479692c4e..ddd269c07ef 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -310,8 +310,8 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath]) { // Check the size of the archive zip.doLast { - def minLength = 330000000 - def maxLength = 361000000 + def minLength = 340000000 + def maxLength = 371000000 def length = archiveFile.get().asFile.length() if (length < minLength) |