aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application
diff options
context:
space:
mode:
authorJacek Poreda <jacek.poreda@sonarsource.com>2023-04-12 14:30:53 +0200
committersonartech <sonartech@sonarsource.com>2023-04-12 20:03:18 +0000
commit2ad2d8ddbec0116fa64b678a9cdfe521344c3760 (patch)
tree583dc75b5115d6f330e4e539d6052d47e4d7ba61 /sonar-application
parent71a95f62be1ac96228cf9de09d14b833d18bc037 (diff)
downloadsonarqube-2ad2d8ddbec0116fa64b678a9cdfe521344c3760.tar.gz
sonarqube-2ad2d8ddbec0116fa64b678a9cdfe521344c3760.zip
SONAR-19005 Update Elasticsearch to 8.7.0
- update ES client to 7.17.9 - update ES modules used in test to 8.7.0
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 aaebfb4c7d4..261b5ea7d5d 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -326,8 +326,8 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath, downloadElastic
// Check the size of the archive
zip.doLast {
- def minLength = 320000000
- def maxLength = 357000000
+ def minLength = 330000000
+ def maxLength = 360000000
def length = archiveFile.get().asFile.length()
if (length < minLength)