That page is just a placeholder for the BitBucket Server integration that is built into the Developer Edition of SonarQube and higher. See the documentation on Bitbucket Server Integration.
I followed all the steps in this documentation. But I’m still unable to view the analysis results in BitBucket. There are still no SonarQube plugin settings in BitBucket.
The build status is displayed near the commit, but I can’t configure the display of information from SonarQube without a plugin:
Is it possible to get a download link with jar file of ‘SonarQube™ for Bitbucket Server’ plugin? Perhaps someone installed this plugin before February 15th and still has this file?
There is no plugin, as mentioned, it was a placeholder page for marketing purposes.
What edition/version of SonarQube are you using? What steps did you follow? Have you executed a pull request analysis (the screenshot you shared is of your master branch)?
You’ll need to initiate an analysis of a pull request to see any information in Bitbucket! This means running an analysis with your CI, configured to analyze pull requests (see the documentation on Pull Request Analysis.
It should look like this in SonarQube when an analysis is successful: SonarQube
------Information for those who will have a similar problem---------
I did not have pull request analysis configured in Teamcity. Only the analysis of commits worked, and I did not understand that pull requests are not analyzed. To enable pull request analysis, I add in TeamCity Build Feature ‘Pull requests’
sonar-project.properties file is not compatible with SonarScanner for MSBuild. Therefore, the parameters sonar.pullrequest.key, sonar.pullrequest.branch, sonar.pullrequest.base must be set in the Additional parameters of the build step
Parameter {sonar.branch.name} is not compatible with {sonar.pullrequest.key sonar.pullrequest.branch sonar.pullrequest.base}. So I did two different build steps depending on the existence of the pullRequest.number variable.
After fixing these issues, everything worked without any plugins. Hope this information helps someone. And thanks again for helping Colin!