aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application
diff options
context:
space:
mode:
authorJulien HENRY <julien.henry@sonarsource.com>2018-07-05 11:51:17 +0200
committerSonarTech <sonartech@sonarsource.com>2018-07-17 20:21:27 +0200
commit8cfc544c1fb69e783c58d74ad3083a686c25f07a (patch)
tree141f98fc11a18e92e09a97233cc2a1620fcda0b0 /sonar-application
parent8bbe57990ec82e2419925b13b90a1e0869d09512 (diff)
downloadsonarqube-8cfc544c1fb69e783c58d74ad3083a686c25f07a.tar.gz
sonarqube-8cfc544c1fb69e783c58d74ad3083a686c25f07a.zip
SONAR-10541, SONAR-10331 Drop compatibility mode and clean plugin classloader
Diffstat (limited to 'sonar-application')
-rw-r--r--sonar-application/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index e50295de352..a943feb45f7 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -127,8 +127,8 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
- def minLength = 150000000
- def maxLength = 170000000
+ def minLength = 140000000
+ def maxLength = 160000000
def length = new File(distsDir, archiveName).length()
if (length < minLength)
throw new GradleException("$archiveName size ($length) too small. Min is $minLength")