diff options
author | Pierre <pierre.guillot@sonarsource.com> | 2021-06-15 16:42:38 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-06-16 20:03:04 +0000 |
commit | cfeb2f4c3c1ce27385f2483b80556f67c9cf3e8b (patch) | |
tree | b374d5effef46e68da316ff695d452e7b1e84163 /sonar-application/build.gradle | |
parent | f2b322485a36bf7dea7fbd887efbda5d5374a145 (diff) | |
download | sonarqube-cfeb2f4c3c1ce27385f2483b80556f67c9cf3e8b.tar.gz sonarqube-cfeb2f4c3c1ce27385f2483b80556f67c9cf3e8b.zip |
SONAR-14792 fix minimum zip version
Diffstat (limited to 'sonar-application/build.gradle')
-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 59d88509fa0..074fcd23df4 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -220,7 +220,7 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 269000000 + def minLength = 268000000 def maxLength = 289000000 def length = archiveFile.get().asFile.length() |