I am using SonarQube to analyze my code before uploading to Gerrit and as a step in the review process in Gerrit. The same code is analyzed twice and I have two projects, e.g. "development-project" and "gerrit-project" in SonarQube. I then sometimes marks something as "Won't fix" or " False positive" etc in my "developpment-project". I would like to move that to the "gerrit-project". Is that possible?
相关问题
- Sonarqube: Squid Rules customization/suppression
- 2 instances of Sonar on same machine
- CA0001: Object reference not set to an instance of
- Gallio error : MSTest executable was not found
- Using Sonar MSBuild Runner with /p:IsPackaging=Tru
相关文章
- SonarQube: How to suppress a warning in Kotlin cod
- @Nullable and SonarQube 'Conditionally execute
- Property 'sonar.jacoco.reportPath' is depr
- This version of OSX is not able to perform the nec
- Please provide compiled classes of your project wi
- Execute sonar-runner in TFS build
- sonar-maven-plugin 5.1.1 not found
- Why sonar-maven-plugin-3.0.1.jar cannot be found w
I was in similar situation and I created simple command line tool for copying Won't Fix and False-Positive resolution types from one SonarQube project to another. A bit clumsy solution, you need to run it after each merge, but better than manually resolve the same issues in two or more SonarQube projects.
You can find the tool on GitHub - https://github.com/HonzaTau/SqCopyResolution
Unfortunately you cannot. There is information, in SonarQube documentation, that projects created with
sonar.branch
parameter are treated as independent* projects.*independent - not associated with any other project
http://docs.sonarqube.org/display/SONAR/Local+and+Branch+Analysis: