]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-15163 Upgrade Elasticsearch to 7.13.3
authorJacek <jacek.poreda@sonarsource.com>
Tue, 13 Jul 2021 07:27:54 +0000 (09:27 +0200)
committersonartech <sonartech@sonarsource.com>
Tue, 13 Jul 2021 20:03:18 +0000 (20:03 +0000)
build.gradle
gradle.properties
sonar-application/build.gradle

index 24602b4d9b73a46f2e85a8269d307645350f0ae2..02d624c861873c449149d2c50435a92cae4ad4c5 100644 (file)
@@ -387,10 +387,10 @@ subprojects {
         entry 'jetty-server'
         entry 'jetty-servlet'
       }
-      dependency('org.elasticsearch.client:elasticsearch-rest-high-level-client:7.12.1') {
+      dependency('org.elasticsearch.client:elasticsearch-rest-high-level-client:7.13.3') {
         exclude 'commons-logging:commons-logging'
       }
-      dependency 'org.elasticsearch.plugin:transport-netty4-client:7.12.1'
+      dependency 'org.elasticsearch.plugin:transport-netty4-client:7.13.3'
       dependency 'org.elasticsearch:mocksocket:1.0'
       //analysis-common need to stay at 7.10.2 as it hasn't been published to mvn central
       dependency 'org.codelibs.elasticsearch.module:analysis-common:7.10.2'
index e029900b589ef10471d602485d7987b05b6b7e01..ffff9478d13fee7cf8f80463bf4dd5ae2903d014 100644 (file)
@@ -11,5 +11,5 @@ org.gradle.vfs.watch=true
 # https://www.elastic.co/downloads/elasticsearch-no-jdk
 elasticsearchDownloadUrlPath=https://artifacts.elastic.co/downloads/elasticsearch/
 elasticsearchDownloadRepoxUrlPath=https://repox.jfrog.io/artifactory/sonarsource-bucket/sonarqube/elasticsearch/
-elasticsearchDownloadUrlFile=elasticsearch-7.12.1-no-jdk-linux-x86_64.tar.gz
-elasticsearchDownloadSha512=c91fd66668977280d7339caf6b4fef9fce5640492f0e2a65bc537c6da8397c801a3727f1ff56b7a1591b11ea47195720c588a4eba473043f829a87cd3dcc0af4
+elasticsearchDownloadUrlFile=elasticsearch-7.13.3-no-jdk-linux-x86_64.tar.gz
+elasticsearchDownloadSha512=b79c249b7fa181d56a62ae9997f14dac8a1bd64199573bc08a75dd344241d762f05405f391746492ad3843f097a79980a21ef99173c6c1eebe8d51541f20c01b
index ef888bc95ddaf204165b06540fd0ceeeb09b94f8..85fad09ddbdd49fa47f0d0880b929a9ead471864 100644 (file)
@@ -220,8 +220,8 @@ zip.doFirst {
 }
 // Check the size of the archive
 zip.doLast {
-  def minLength = 270000000
-  def maxLength = 291000000
+  def minLength = 273000000
+  def maxLength = 294000000
 
   def length = archiveFile.get().asFile.length()
   if (length < minLength)