You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we can use either the spotbugs goal which performs the analysis, or the check goal which performs the analysis and fails the build if violations are detected.
It would be nice to have another goal (similar to Maven Failsafe Plugin's verify goal) which fails the build if the spotbugsXml.xml report contains violations, without invoking the spotbugs goal. This way, it would be possible to split the analysis and verification into lifecycle phases of our choosing.
One use case is running multiple code analyzers at once and only failing the build at a later stage, so that all of them have a chance to run.
The text was updated successfully, but these errors were encountered:
Right now we can use either the
spotbugs
goal which performs the analysis, or thecheck
goal which performs the analysis and fails the build if violations are detected.It would be nice to have another goal (similar to Maven Failsafe Plugin's
verify
goal) which fails the build if thespotbugsXml.xml
report contains violations, without invoking thespotbugs
goal. This way, it would be possible to split the analysis and verification into lifecycle phases of our choosing.One use case is running multiple code analyzers at once and only failing the build at a later stage, so that all of them have a chance to run.
The text was updated successfully, but these errors were encountered: