Open
Description
Hello, I am using maven plugin with these settings:
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.9.3.0</version>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<includeTests>true</includeTests>
<xmlOutput>true</xmlOutput>
<htmlOutput>true</htmlOutput>
<outputDirectory>${project.build.directory}/spotbugs</outputDirectory>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
HTML report looks like this:
It has found 24 bugs successfully, but Files table is empty.
And spotbugsXml.xml
contains these 24 bugs.
What could be wrong?
Metadata
Metadata
Assignees
Labels
No labels