I am trying to combine hudson and findbugs on the command line. I am using a command line script.
./findbugs -textui -xml -outputFile report.xml src/
When I try to run this, I get an error
Exception in thread "main" edu.umd.cs.findbugs.NoClassesFoundToAnalyzeException: No classes found to analyze in
Is it possible to run findbugs on .java files? How to include java files in this directory and subdirectories?
source share