aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/build.gradle
diff options
context:
space:
mode:
authorcolin-mueller-sonarsource <44168128+colin-mueller-sonarsource@users.noreply.github.com>2019-06-27 03:51:01 -0700
committersonartech <sonartech@sonarsource.com>2019-06-28 08:45:57 +0200
commitab644c260ca81e0c7af7620d2ea427ea5c2083b5 (patch)
treeec2eb6154412d5b34ca192be9522467b2f24f5b6 /sonar-application/build.gradle
parentb70e58ce8571985543ac44c3590a0d9132e9c09e (diff)
downloadsonarqube-ab644c260ca81e0c7af7620d2ea427ea5c2083b5.tar.gz
sonarqube-ab644c260ca81e0c7af7620d2ea427ea5c2083b5.zip
DOCS: Ported License Manger Docs
* Created license-manager.md * Added support-information-file.png * Added License Managemer to ToC * Added License Manager to static docs index * Update SonarQubeNavigationTree.json * Update StaticNavigationTree.json * Update license-manager.md * Update license-manager.md * Update max size of distribution * Update license-manager.md
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r--sonar-application/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index b7ebc064f18..6db87116f7b 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -211,7 +211,7 @@ zip.doFirst {
// Check the size of the archive
zip.doLast {
def minLength = 198000000
- def maxLength = 206000000
+ def maxLength = 207000000
def length = archiveFile.get().asFile.length()
if (length < minLength)
throw new GradleException("$archiveName size ($length) too small. Min is $minLength")