aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/build.gradle
diff options
context:
space:
mode:
authorJulien HENRY <julien.henry@sonarsource.com>2018-07-05 11:51:17 +0200
committerSonarTech <sonartech@sonarsource.com>2018-09-19 10:54:37 +0200
commitfdf0f2f89300342c932ab23b71c895866c7d4834 (patch)
tree2a8be2a4e5bf3d39e59efbef7ceefa192ee76711 /sonar-application/build.gradle
parent4013c04fad08403ec9feaa406eb69f2e9dc6d745 (diff)
downloadsonarqube-fdf0f2f89300342c932ab23b71c895866c7d4834.tar.gz
sonarqube-fdf0f2f89300342c932ab23b71c895866c7d4834.zip
SONAR-10541, SONAR-10331 Drop compatibility mode and clean plugin classloader
Diffstat (limited to 'sonar-application/build.gradle')
-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 07929229da8..41cd8d85b18 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -131,8 +131,8 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
- def minLength = 160000000
- def maxLength = 175000000
+ def minLength = 150000000
+ def maxLength = 165000000
def length = new File(distsDir, archiveName).length()
if (length < minLength)
throw new GradleException("$archiveName size ($length) too small. Min is $minLength")