Skip to content

Commit

Permalink
chore: ignore new findbugs 4.7.0 detectors causing ksql build to fail (
Browse files Browse the repository at this point in the history
  • Loading branch information
spena authored Jun 8, 2022
1 parent 42df490 commit 22392f3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions findbugs/findbugs-exclude.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,16 @@ For a detailed description of findbugs bug categories, see http://findbugs.sourc
<Match>
<Bug pattern="JUA_DONT_ASSERT_INSTANCEOF_IN_TESTS"/>
</Match>
<!-- false positive in Java 11, see https://github.com/spotbugs/spotbugs/issues/2040 -->
<Match>
<Bug pattern="THROWS_METHOD_THROWS_RUNTIMEEXCEPTION"/>
</Match>
<Match>
<Bug pattern="THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION"/>
</Match>
<Match>
<Bug pattern="THROWS_METHOD_THROWS_CLAUSE_THROWABLE"/>
</Match>

<!--
DO NOT USE THIS EXCLUSION FILE FOR NON-GENERATED CODE
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,11 @@
<jersey-common>2.34</jersey-common>

<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>

<!-- A newer mockito 4.5.1 added on https://github.com/confluentinc/common/pull/460
caused issues with some unit tests. This version 4.3.1 is temporary until we
figured out what's wrong with 4.5.1 or newer -->
<mockito.version>4.3.1</mockito.version>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 22392f3

Please sign in to comment.