Skip to content

Commit

Permalink
Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.3.1 to 4.8.4.0 (
Browse files Browse the repository at this point in the history
#446)

* Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.3.1 to 4.8.4.0

Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.8.3.1 to 4.8.4.0.
- [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases)
- [Commits](spotbugs/spotbugs-maven-plugin@spotbugs-maven-plugin-4.8.3.1...spotbugs-maven-plugin-4.8.4.0)

---
updated-dependencies:
- dependency-name: com.github.spotbugs:spotbugs-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* ignore all the new false positives

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ivan <[email protected]>
  • Loading branch information
dependabot[bot] and inponomarev authored Apr 16, 2024
1 parent bf1d6f9 commit bb6932c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<assertj.version>3.25.3</assertj.version>
<jedis.version>5.1.2</jedis.version>
<testcontainers.version>1.19.7</testcontainers.version>
<spotbugs.version>4.8.3.1</spotbugs.version>
<spotbugs.version>4.8.4.0</spotbugs.version>
<slf4j.version>2.0.13</slf4j.version>
<java.version>1.8</java.version>
</properties>
Expand Down
22 changes: 18 additions & 4 deletions spotbugs-exclude.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter xmlns="https://github.com/spotbugs/filter/3.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://github.com/spotbugs/filter/3.0.0 https://raw.githubusercontent.com/spotbugs/spotbugs/3.1.0/spotbugs/etc/findbugsfilter.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://github.com/spotbugs/filter/3.0.0 https://raw.githubusercontent.com/spotbugs/spotbugs/3.1.0/spotbugs/etc/findbugsfilter.xsd">

<Match>
<Or>
<Bug pattern="EI_EXPOSE_REP2"/>
<Bug pattern="EI_EXPOSE_REP"/>
<Bug pattern="DM_DEFAULT_ENCODING" />
<Bug pattern="DM_CONVERT_CASE" />
<Bug pattern="DM_DEFAULT_ENCODING"/>
<Bug pattern="DM_CONVERT_CASE"/>
<Bug pattern="SING_SINGLETON_GETTER_NOT_SYNCHRONIZED"/>
</Or>
</Match>

Expand All @@ -19,4 +20,17 @@
<Bug pattern="THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION"/>
</Or>
</Match>
<Match>
<!--False positive as of Spotbugs 4.8.4.0-->
<Class name="com.github.fppt.jedismock.datastructures.RMHyperLogLog"/>
<Bug pattern="MC_OVERRIDABLE_METHOD_CALL_IN_READ_OBJECT"/>
</Match>
<Match>
<Class name="com.github.fppt.jedismock.operations.sortedsets.ZAdd"/>
<Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
</Match>
<Match>
<Class name="com.github.fppt.jedismock.datastructures.Slice"/>
<Bug pattern="SING_SINGLETON_IMPLEMENTS_SERIALIZABLE"/>
</Match>
</FindBugsFilter>

0 comments on commit bb6932c

Please sign in to comment.