Skip to content

Commit 7a398c8

Browse files
Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.6 to 4.9.3.0 (#769)
* Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.6 to 4.9.3.0 Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.8.6.6 to 4.9.3.0. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](spotbugs/spotbugs-maven-plugin@spotbugs-maven-plugin-4.8.6.6...spotbugs-maven-plugin-4.9.3.0) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * exclude new findings --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ivan <iponomarev@mail.ru>
1 parent b5ec71b commit 7a398c8

2 files changed

Lines changed: 15 additions & 2 deletions

File tree

findbugs-exclude.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
</Or>
3737
</Match>
3838
<Match>
39-
<!-- These are triggered by getDate()/setDate() on cursors-->
4039
<Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2"/>
4140
</Match>
4241
<Match>
@@ -84,4 +83,18 @@
8483
https://wiki.sei.cmu.edu/confluence/display/java/OBJ11-J.+Be+wary+of+letting+constructors+throw+exceptions -->
8584
<Bug pattern="CT_CONSTRUCTOR_THROW"/>
8685
</Match>
86+
<Match>
87+
<!-- This class is thread confined -->
88+
<Class name="ru.curs.celesta.CallContext"/>
89+
<Or>
90+
<Bug pattern="AT_NONATOMIC_64BIT_PRIMITIVE"/>
91+
<Bug pattern="AT_NONATOMIC_OPERATIONS_ON_SHARED_VARIABLE"/>
92+
<Bug pattern="AT_STALE_THREAD_WRITE_OF_PRIMITIVE"/>
93+
</Or>
94+
</Match>
95+
<Match>
96+
<!-- These classes are not thread-safe and not used in multithreading-->
97+
<Package name="ru.curs.celesta.score"/>
98+
<Bug pattern="AT_STALE_THREAD_WRITE_OF_PRIMITIVE"/>
99+
</Match>
87100
</FindBugsFilter>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<testcontainers.firebird.version>1.5.1</testcontainers.firebird.version>
7171

7272
<!--plugin versions -->
73-
<spotbugs.maven.plugin.version>4.8.6.6</spotbugs.maven.plugin.version>
73+
<spotbugs.maven.plugin.version>4.9.3.0</spotbugs.maven.plugin.version>
7474
<jacoco.version>0.8.13</jacoco.version>
7575
<javacc.maven.plugin.version>3.1.1</javacc.maven.plugin.version>
7676
<maven.assembly.plugin.version>3.7.1</maven.assembly.plugin.version>

0 commit comments

Comments
 (0)