We created a custom plugin for FindBugs (for clarity: it is a findbugs plugin, not a sonar plugin), and we want to extend the FindBugs sonar plugin with our custom findbugs plugin.
We are currently using SonarQube 5.1 with the FindBugs 3.2 sonar plugin.
Since our custom plugbug-plugin is a valid plugin for FindBugs, we thought the easiest way to activate it was to use the FindBugs instance plugin system from our existing sonar plugin, but we could not find a way to activate our findbugs-plugin this way.
We also tried to create the rules.xml file and put our banner in sonar_home / extensions / rules / findbugs, as described in https://jira.sonarsource.com/browse/SONAR-1481 , but this does not seem to work with the version of Sonar- FindBugs plugin that we use.
What is the right way to configure our version of SonarQube to build our custom FindBugs plugin? What steps do we need to take?
source share