diff options
author | Jacek Poreda <jacek.poreda@sonarsource.com> | 2023-04-12 14:30:53 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-04-12 20:03:18 +0000 |
commit | 2ad2d8ddbec0116fa64b678a9cdfe521344c3760 (patch) | |
tree | 583dc75b5115d6f330e4e539d6052d47e4d7ba61 /sonar-application | |
parent | 71a95f62be1ac96228cf9de09d14b833d18bc037 (diff) | |
download | sonarqube-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.gradle | 4 |
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) |