Skip to content

Commit

Permalink
SONAR-11405 Upgrade code analyzers to latest released versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Lancelot authored and sonartech committed Dec 20, 2018
1 parent 68930d0 commit f122aef
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions sonar-application/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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'
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit f122aef

Please sign in to comment.