Skip to content

Commit

Permalink
Bump com.github.spotbugs from 5.1.4 to 5.2.1
Browse files Browse the repository at this point in the history
As the `PI_DO_NOT_REUSE_PUBLIC_IDENTIFIERS_CLASS_NAMES` rule
[https://wiki.sei.cmu.edu/confluence/display/java/DCL01-J.+Do+not+reuse+public+identifiers+from+the+Java+Standard+Library]
doesn't seem to be too problematic, but produces quite some violations,
it is just ignored.

Co-authored-by: Manfred Hanke <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and codecholeric committed Dec 3, 2023
1 parent 0c0101a commit 5e57120
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'archunit.base-conventions'
id 'com.github.johnrengelman.shadow' version '7.1.2' apply false
id 'com.github.spotbugs' version '5.1.4' apply false
id 'com.github.spotbugs' version '5.2.1' apply false
id "io.github.gradle-nexus.publish-plugin" version "1.3.0" apply false
id "com.diffplug.spotless" version "6.23.2" apply false
id 'com.github.ben-manes.versions' version '0.50.0' apply false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,8 @@
<Method name="targetsOf"/>
<Bug pattern="NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE"/>
</Match>
<Match>
<Bug pattern="PI_DO_NOT_REUSE_PUBLIC_IDENTIFIERS_CLASS_NAMES"/>
<!-- https://wiki.sei.cmu.edu/confluence/display/java/DCL01-J.+Do+not+reuse+public+identifiers+from+the+Java+Standard+Library -->
</Match>
</FindBugsFilter>

0 comments on commit 5e57120

Please sign in to comment.