Hello, I noticed today that we are putting the findBugsExclude.xml file inside src/main/resources.
This is not a good practice as we are going to put that file into the file .jar file produced by every Maven module who has that file. I suggest moving the file somewhere else. We could also use @SuppressFBWarnings annotation, I feel it more practical: - it is closer to the code, so you see that there is a Suppression when you are working the Java file - it is more robust to refactors (if you move the class or change the name you have to update .xml files as well) Regards Enrico