Browse Source

Reactivate zip size check for non release build

tags/7.8
Grégoire Aubert 5 years ago
parent
commit
6edd73a5b4
1 changed files with 7 additions and 9 deletions
  1. 7
    9
      sonar-application/build.gradle

+ 7
- 9
sonar-application/build.gradle View File

@@ -175,15 +175,13 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
if (release) {
def minLength = 191000000
def maxLength = 198000000
def length = new File(distsDir, archiveName).length()
if (length < minLength)
throw new GradleException("$archiveName size ($length) too small. Min is $minLength")
if (length > maxLength)
throw new GradleException("$distsDir/$archiveName size ($length) too large. Max is $maxLength")
}
def minLength = 191000000
def maxLength = 198000000
def length = new File(distsDir, archiveName).length()
if (length < minLength)
throw new GradleException("$archiveName size ($length) too small. Min is $minLength")
if (length > maxLength)
throw new GradleException("$distsDir/$archiveName size ($length) too large. Max is $maxLength")
}
assemble.dependsOn zip


Loading…
Cancel
Save