How to create html problem report in SonarQube 5.1

We recently upgraded the SonarQube version to version 5.1. In earlier versions, the Problem Reporting plugin was released to generate an html report for problems. Now that the plugin becomes native in 5.1, I wonder where the settings for the problem report are? Is there a way to generate an html report as before?

+6
source share
2 answers

To complement Alexander's answer; Parameters are described here .

Since SonarQube 4.0 you can do the following:

sonar-runner -Dsonar.analysis.mode=preview -Dsonar.issuesReport.html.enable=true 
+2
source

The parameters are the same as before, when the problem report was a plugin. See: http://docs.sonarqube.org/display/SONAR/Getting+Issues+Report+in+Preview+Mode

+1
source

Source: https://habr.com/ru/post/984734/


All Articles