From: Simon Brandhof Date: Thu, 18 Oct 2018 09:00:20 +0000 (+0200) Subject: SONAR-11389 Bundle VB.NET analyzer in the Community Edition X-Git-Tag: 7.5~260 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5cb25d48a7fe6cefb3722f79e59de66da9c5de9b;p=sonarqube.git SONAR-11389 Bundle VB.NET analyzer in the Community Edition --- diff --git a/server/sonar-docs/src/tooltips/editions/developer.md b/server/sonar-docs/src/tooltips/editions/developer.md index d2fafe1afb1..74cb8912f2b 100644 --- a/server/sonar-docs/src/tooltips/editions/developer.md +++ b/server/sonar-docs/src/tooltips/editions/developer.md @@ -1,7 +1,7 @@ ### ![SonarSource logo](/images/sonarsource-icon.png) Developer Edition * Branch and Pull Requests analysis -* Analysis of additional languages: C/C++, Objective-C, PL/SQL, ABAP , VB.NET, TSQL , Swift +* Analysis of additional languages: C/C++, Objective-C, PL/SQL, ABAP , TSQL , Swift * Detection of security vulnerabilities * SonarLint notifications diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 7847554b1e0..9b2035d292c 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -28,6 +28,7 @@ configurations { ext { slangVersion = '1.2.1.2009' + dotnetVersion = '7.7.0.7192' } dependencies { @@ -52,7 +53,8 @@ dependencies { jdbc_postgresql 'org.postgresql:postgresql' bundledPlugin 'org.sonarsource.css:sonar-css-plugin:1.0.2.611@jar' - bundledPlugin 'org.sonarsource.dotnet:sonar-csharp-plugin:7.7.0.7192@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'