spotbugs-maven-plugin icon indicating copy to clipboard operation
spotbugs-maven-plugin copied to clipboard

Spotbugs maven report: how to get text output

Open linusjf opened this issue 4 years ago • 1 comments

       <addSourceDirs>true</addSourceDirs>
         <failOnError>false</failOnError>
         <excludeFilterFile>${spotbugs.excludeFilterFile}</excludeFilterFile>
         <includeTests>true</includeTests>
         <skipEmptyReport>true</skipEmptyReport>
         <xmlOutput>false</xmlOutput>
         <spotbugsXmlOutput>false</spotbugsXmlOutput>
         <effort>Max</effort>
         <threshold>Default</threshold>

The above is the configuration parameters for my Spotbugs plugin entry. How do I output the report in text format?

The pom is located at:

https://github.com/Fernal73/DSAlgos/blob/master/pom.xml

linusjf avatar Jun 22 '20 23:06 linusjf

I find the XML output too verbose even when there are no bugs reported. Is there a way of reducing the verbosity of the output? Additionally, the output is poorly formatted. Too many elements crammed into a single line.

linusjf avatar Jul 03 '20 13:07 linusjf