]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-12875 upgrade sonar-java to 6.0
authorsns-seb <sns-seb@users.noreply.github.com>
Mon, 23 Dec 2019 09:03:21 +0000 (09:03 +0000)
committerSonarTech <sonartech@sonarsource.com>
Mon, 23 Dec 2019 19:46:10 +0000 (20:46 +0100)
build.gradle
sonar-application/build.gradle

index 9881081ba7332a4fe4dd2059ce4750f336af6e21..bb1a2f187fc2a68aa90815377a688f53a55cb3f2 100644 (file)
@@ -147,7 +147,7 @@ subprojects {
       dependency 'org.sonarsource.flex:sonar-flex-plugin:2.5.1.1831' // bundled_plugin:flex:sonar-flex
       dependency 'org.sonarsource.html:sonar-html-plugin:3.2.0.2082' // bundled_plugin:web:sonar-html
       dependency 'org.sonarsource.jacoco:sonar-jacoco-plugin:1.0.2.475' // bundled_plugin:jacoco:sonar-jacoco
-      dependency 'org.sonarsource.java:sonar-java-plugin:5.14.0.18788' // bundled_plugin:java:sonar-java
+      dependency 'org.sonarsource.java:sonar-java-plugin:6.0.0.20538' // bundled_plugin:java:sonar-java
       dependency 'org.sonarsource.javascript:sonar-javascript-plugin:6.1.0.11503' // bundled_plugin:javascript:SonarJS
       dependency 'org.sonarsource.php:sonar-php-plugin:3.3.0.5166' // bundled_plugin:php:sonar-php
       dependency 'org.sonarsource.python:sonar-python-plugin:2.3.0.5351' // bundled_plugin:python:sonar-python
index 662fdda85bdd6493ac84e7c95dcbc6a8851260a7..e3663f573d74ab5d0bb391ab471516b3f5cacb0d 100644 (file)
@@ -177,8 +177,8 @@ zip.doFirst {
 }
 // Check the size of the archive
 zip.doLast {
-  def minLength = 203000000
-  def maxLength = 212000000
+  def minLength = 212000000
+  def maxLength = 221000000
   def length = archiveFile.get().asFile.length()
   if (length < minLength)
     throw new GradleException("$archiveName size ($length) too small. Min is $minLength")