I have installed Sonarqube 6.7.6 and sonar-scanner (sonar-scanner-3.3.0.1492-windows). I have analyzed my code and the results are at dashboard.
Now, I need to export the report in XML or Excel or PDF format (Anything among these are fine).
I have googled and found some answers like,
To get an HTML report, set the sonar.issuesReport.html.enable property to true. To define its location, set the sonar.issuesReport.html.location property to an absolute or relative path to the destination folder for the HTML report. The default value is .sonar/issues-report/ for the SonarQube Runner and Ant, and target/sonar/issues-report/ for Maven. By default 2 html reports are generated: The full report (default name is issues-report.html) The light report (default name is issues-report-light.html) that will only contains new issues.
But I have included these in my project property file, yet the report is not found.
Can anyone please help me out of this ?