]> source.dussan.org Git - sonarqube.git/commitdiff
Increase maximum artifact size
authorJacek <jacek.poreda@sonarsource.com>
Tue, 28 Sep 2021 09:26:14 +0000 (11:26 +0200)
committersonartech <sonartech@sonarsource.com>
Tue, 28 Sep 2021 20:03:12 +0000 (20:03 +0000)
sonar-application/build.gradle

index edaecf7a4c0e942b56750ea985ef85cb3b902516..9300bb23e2307ce9b4717db8ee107a28d512499d 100644 (file)
@@ -224,8 +224,8 @@ zip.doFirst {
 }
 // Check the size of the archive
 zip.doLast {
-  def minLength = 295000000
-  def maxLength = 310000000
+  def minLength = 300000000
+  def maxLength = 315000000
 
   def length = archiveFile.get().asFile.length()
   if (length < minLength)