aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application
diff options
context:
space:
mode:
authorStas Vilchik <stas.vilchik@sonarsource.com>2018-12-18 15:51:21 +0100
committersonartech <sonartech@sonarsource.com>2018-12-20 11:41:49 +0100
commit9c3818394a97ff1b9d8e92f781bcd4a911ee9838 (patch)
treef41cc866a2fafd5b0dfba65cc668c723c64b41c9 /sonar-application
parent687c3b52b21afb9f7e8e80b4329921b1bfef1257 (diff)
downloadsonarqube-9c3818394a97ff1b9d8e92f781bcd4a911ee9838.tar.gz
sonarqube-9c3818394a97ff1b9d8e92f781bcd4a911ee9838.zip
create a separate js bundle for legacy browsers (#1073)
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 2610aab0d22..6afc7cf95d9 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -143,8 +143,8 @@ zip.doFirst {
}
// Check the size of the archive
zip.doLast {
- def minLength = 180000000
- def maxLength = 185000000
+ def minLength = 185000000
+ def maxLength = 190000000
def length = new File(distsDir, archiveName).length()
if (length < minLength)
throw new GradleException("$archiveName size ($length) too small. Min is $minLength")