We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d53377a commit 3c2bd60Copy full SHA for 3c2bd60
maven/core-unittests/pom.xml
@@ -63,6 +63,7 @@
63
<failOnError>false</failOnError>
64
<xmlOutput>true</xmlOutput>
65
<xmlOutputDirectory>${project.build.directory}</xmlOutputDirectory>
66
+ <excludeFilterFile>${project.basedir}/spotbugs-exclude.xml</excludeFilterFile>
67
</configuration>
68
<executions>
69
<execution>
maven/core-unittests/spotbugs-exclude.xml
@@ -0,0 +1,11 @@
1
+<FindBugsFilter>
2
+ <Match>
3
+ <Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/>
4
+ </Match>
5
6
+ <Bug pattern="DM_GC"/>
7
8
9
+ <Bug pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE"/>
10
11
+</FindBugsFilter>
0 commit comments