Copyright 2015-2017 SonarSource.
Licensed under the GNU Lesser General Public License, Version 3.0
This repo contains tools to help integrate Roslyn analyzers with SonarQube so that issues detected by the Roslyn analyzers are reported in SonarQube. Specifically, the tools will generate a Java SonarQube plugin that registers the rules with SonarQube. The generated plugin works with the C# plugin (v4.5 or higher) and the SonarQube Scanner for MSBuild (v2.0 or higher) to handle executing the analyzer and uploading any issues. See this blog post for more information.
The latest release version (v1.0) is available here.
- the analyzer must be available as a NuGet package
- the analyzer must use Roslyn v1.0 or v1.1 (newer versions of Roslyn are not yet supported - see issue SFSRAP-45 for a workaround)
- only C# rules are supported
These limitations will be addressed at some point in the future.
There are two groups of target users:
-
Roslyn analyzer authors
- Analyzer authors will be able to use the tools during development to provide additional metadata about their rules (e.g. SonarQube severity, tags, a richer description, ...) and generate the SonarQube plugin.
-
Roslyn analyzer users
- If the analyzer author has not provided a SonarQube plugin for their analyzer then users will be able to generate a plugin from an analyzer NuGet package, although they won't be able to provide such rich metadata.
- Download and install the latest released version
Alternatively, if you want to build the SDK locally:
- Clone the repository
- Build the solution PluginGenerator.sln in the repository root
- Run the generator tool
- Run the generator tool RoslynSonarQubePluginGenerator.exe specifying the analyzer NuGet package id e.g. RoslynSonarQubePluginGenerator /a:Wintellect.Analyzers
It is possible to specify an optional package version e.g. /a:Wintellect.Analyzers:1.0.5.0
The tool will create a .jar file called based on the package name and version in the current directory e.g. wintellectanalyzers-plugin-1.0.5.jar
The generated jar can be installed to SonarQube as normal (e.g. by dropping it in the SonarQube server extensions\plugins folder and restarting the SonarQube server). You will see a new repository containing all of the rules defined by the analyzer. The rules can be added to Quality Profiles just like any other SonarQube rule.
The SDK will look for NuGet.config files in the following locations:
- in the directory containing RoslynSonarQubeGenerator.exe
- %AppData%\NuGet (i.e. the standard pre-user location)
- %ProgramData%\NuGet\Config\SonarQube (a custom machine-wide location
- %ProgramData%\NuGet\Config (i.e. the standard machine-wide location)
If the analyzer you want to package is available in a private NuGet feed then you will need to create an appropriate NuGet.config file to point to the private feed.
If you want to create a jar for Roslyn analyzer that is not available from a NuGet feed (e.g. an analyzer you have created on your local machine) you can specify a package source that points at a local directory containing the .nupkg file created by the standard Roslyn templates. See the NuGet docs for more information.
The SDK uses information from the NuGet package to populate the fields in the generated plugin that affect how the plugin is described in the Update Centre in the SonarQube UI. It is not currently possible to customise these values.
The NuGet package properties are documented here and the SonarQube plugin properties are documented here.
The NuGet package properties are mapped to plugin properties as follows:
Plugin property | NuGet property | Falls back to |
---|---|---|
Plugin-Name | title | id |
Plugin-Description | description | |
Plugin-Version | version | |
Plugin-Developers | authors | |
Plugin-Organisation | owners | authors |
Plugin-Homepage | projectUrl | |
Plugin-TermsConditionsUrl | licenseUrl | |
Plugin-License | licenseNames** | licenseUrl |
Key* | id |
* This property is not visible to users, but must be unique. It is calculated from the package id.
** This property is assigned heuristically by the NuGet.org website based on the licenseUrl.