How to export results as a PDF report?

2019-03-15 11:38发布

I am using SonarQube 5.6.3. How can I create a SonarQube analysis details report as a PDF form, an excel report, or an html formatted report?

No plugin seems to be available for this.

I was unable to generate an html file using below configuration:

sonar.issuesReport.html.enable = true
sonar.issuesReport.html.location = c:\
sonar.issuesReport.html.name = sample

How can I export these details from SonarQube?

3条回答
戒情不戒烟
2楼-- · 2019-03-15 12:06

To get html reports add these properties to your sonar.properties file

sonar.analysis.mode=preview 
sonar.issuesReport.html.enable=true
查看更多
Ridiculous、
3楼-- · 2019-03-15 12:09

The Governance plugin allows to generate PDF reports. See http://docs.sonarqube.org/display/PLUG/Governance+plugin for more details. Please note that I work at SonarSource, the company developing this commercial plugin.

EDIT:

Governance plugin has been replaced by the SonarQube Enterprise Edition in versions 7.x.

查看更多
Anthone
4楼-- · 2019-03-15 12:13

For the sonar-maven-plugin it works the same. Just add these two properties to the pom file:

<project xmlns="...>
     ...
    <properties>
         <sonar.analysis.mode>preview</sonar.analysis.mode>
         <sonar.issuesReport.html.enable>true</sonar.issuesReport.html.enable>
    </properties>
    ...
</project>

results will be in the target/sonar folder

查看更多
登录 后发表回答