diff options
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 d7b08781919..5e702cc618e 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -164,8 +164,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 238000000 - def maxLength = 258000000 + def minLength = 340000000 + def maxLength = 360000000 def length = archiveFile.get().asFile.length() if (length < minLength) |