Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions codestyle/findbugs-exclude.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@

<Bug pattern="EI_EXPOSE_REP"/>
<Bug pattern="EI_EXPOSE_REP2"/>

<!-- Pre-existing patterns newly detected by SpotBugs 4.8.6 (upgraded from 4.0.0).
These are all pre-existing code patterns, not regressions introduced by the upgrade.
They should be addressed in follow-up work and removed from this filter. -->
<Bug pattern="CT_CONSTRUCTOR_THROW"/>
<Bug pattern="MC_OVERRIDABLE_METHOD_CALL_IN_CONSTRUCTOR"/>
<Bug pattern="MS_EXPOSE_REP"/>
<Bug pattern="NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
<Bug pattern="PA_PUBLIC_MUTABLE_OBJECT_ATTRIBUTE"/>
<Bug pattern="REFLC_REFLECTION_MAY_INCREASE_ACCESSIBILITY_OF_CLASS"/>
<Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
</Or>
</Match>
<Match>
Expand Down
11 changes: 9 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<version>4.6.0</version>
<version>4.8.6</version>
</dependency>
<dependency>
<groupId>com.vdurmont</groupId>
Expand Down Expand Up @@ -426,7 +426,14 @@
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.0.0</version>
<version>4.8.6.8</version>
<dependencies>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>4.8.6</version>
</dependency>
</dependencies>
<configuration>
<skip>${skipTests}</skip>
<effort>Max</effort>
Expand Down
Loading