I want to set FindBugs in my maven project so I can know how may errors and bugs I have.
- I want to know how to set the FindBugs in a Maven project.
- How can I get a report? Where can I find it?
I'm using IntelliJ id on Ubuntu.
public class HelloWorld {
public static void main(String[] args) {
// Prints "Hello, World" in the terminal window.
System.out.println("Hello, World");
}
}