How to configure findbugs plugin in eclipse?

10,130

Solution 1

Got the same Problem. Actually its really simple.

In Eclipse:

File -> Export -> General -> Preferences

If you click next you will find several Preferences to export. You will also find Findbugs Preferences.

If you want to import the settings to another Eclipse just use:

File -> Import -> General -> Preferences and select the exported File ;)

Hope that helps! Sorry cant post any images because im new here...

Solution 2

You can use a 'filter file'. In eclipse, go to:

Window --> Preferences --> Java --> FindBugs --> Filter files (tab) --> In Include filter files select Add..

Then choose your xml configuration file (It may be the one exported from Sonar configuration that Kayser talked about).

Share:
10,130
Codeby
Author by

Codeby

Updated on July 24, 2022

Comments

  • Codeby
    Codeby almost 2 years

    Can anyone help me to configure findbugs plugin in eclipse , so that i can create an xml file and import it and export it as well?? i configured the PMD and CheckStyle plugins by creating a xml file for both and imported it in eclipse but in findbugs there is no such option of importing files or to configure as well. I tried the option filter files in findbugs but it did not work. If anyone have done it before or know anything about it your suggestions are deeply appreciated.

    Thanks in advance!

  • Oved D
    Oved D over 9 years
    This question is asking how to configure it with an xml file.