Browse Source

NO-JIRA increase allowed max size of the ZIP archive due to larger analyzer dependencies size

tags/10.4.0.87286
Aurelien Poscia 4 months ago
parent
commit
81f6279722
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      sonar-application/build.gradle

+ 1
- 1
sonar-application/build.gradle View File

// Check the size of the archive // Check the size of the archive
zip.doLast { zip.doLast {
def minLength = 340000000 def minLength = 340000000
def maxLength = 442000000
def maxLength = 460000000


def length = archiveFile.get().asFile.length() def length = archiveFile.get().asFile.length()
if (length < minLength) if (length < minLength)

Loading…
Cancel
Save