Browse Source

SONAR-11389 Bundle VB.NET analyzer in the Community Edition

tags/7.5
Simon Brandhof 5 years ago
parent
commit
5cb25d48a7

+ 1
- 1
server/sonar-docs/src/tooltips/editions/developer.md View File

@@ -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


+ 3
- 1
sonar-application/build.gradle View File

@@ -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'

Loading…
Cancel
Save