]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-11405 Upgrade code analyzers to latest released versions
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 17 Dec 2018 15:40:01 +0000 (16:40 +0100)
committersonartech <sonartech@sonarsource.com>
Thu, 20 Dec 2018 10:41:48 +0000 (11:41 +0100)
sonar-application/build.gradle

index c635b6331f79487f796702d99f664c7cc5bd3229..2610aab0d227f064e99c26f43138bee9f7c1cf8e 100644 (file)
@@ -27,8 +27,8 @@ configurations {
 }
 
 ext {
-  slangVersion = '1.2.1.2009'
-  dotnetVersion = '7.7.0.7192'
+  slangVersion = '1.4.0.155'
+  dotnetVersion = '7.9.1.7622'
 }
 
 dependencies {
@@ -52,18 +52,18 @@ dependencies {
   jdbc_mysql 'mysql:mysql-connector-java'
   jdbc_postgresql 'org.postgresql:postgresql'
 
-  bundledPlugin 'org.sonarsource.css:sonar-css-plugin:1.0.2.611@jar'
+  bundledPlugin 'org.sonarsource.css:sonar-css-plugin:1.0.3.724@jar'
   bundledPlugin "org.sonarsource.dotnet:sonar-csharp-plugin:${dotnetVersion}@jar"
   bundledPlugin "org.sonarsource.dotnet:sonar-vbnet-plugin:${dotnetVersion}@jar"
   bundledPlugin 'org.sonarsource.flex:sonar-flex-plugin:2.4.0.1222@jar'
   bundledPlugin 'org.sonarsource.go:sonar-go-plugin:1.1.0.1612@jar'
-  bundledPlugin 'org.sonarsource.java:sonar-java-plugin:5.8.0.15699@jar'
+  bundledPlugin 'org.sonarsource.java:sonar-java-plugin:5.9.2.16552@jar'
   bundledPlugin 'org.sonarsource.jacoco:sonar-jacoco-plugin:1.0.1.143@jar'
   bundledPlugin 'org.sonarsource.javascript:sonar-javascript-plugin:5.0.0.6962@jar'
   bundledPlugin "org.sonarsource.slang:sonar-kotlin-plugin:${slangVersion}@jar"
   bundledPlugin "org.sonarsource.slang:sonar-ruby-plugin:${slangVersion}@jar"
   bundledPlugin 'org.sonarsource.ldap:sonar-ldap-plugin:2.2.0.608@jar'
-  bundledPlugin 'org.sonarsource.php:sonar-php-plugin:2.14.0.3569@jar'
+  bundledPlugin 'org.sonarsource.php:sonar-php-plugin:2.15.0.4060@jar'
   bundledPlugin 'org.sonarsource.python:sonar-python-plugin:1.10.0.2131@jar'
   bundledPlugin 'org.sonarsource.scm.git:sonar-scm-git-plugin:1.6.0.1349@jar'
   bundledPlugin 'org.sonarsource.scm.svn:sonar-scm-svn-plugin:1.9.0.1295@jar'
@@ -143,8 +143,8 @@ zip.doFirst {
 }
 // Check the size of the archive
 zip.doLast {
-  def minLength = 170000000
-  def maxLength = 175000000
+  def minLength = 180000000
+  def maxLength = 185000000
   def length = new File(distsDir, archiveName).length()
   if (length < minLength)
     throw new GradleException("$archiveName size ($length) too small. Min is $minLength")