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.
2 parents 99fe25f + d3158fd commit 0da5583Copy full SHA for 0da5583
pom.xml
@@ -407,6 +407,9 @@
407
<plugin>
408
<groupId>com.github.spotbugs</groupId>
409
<artifactId>spotbugs-maven-plugin</artifactId>
410
+ <configuration>
411
+ <excludeFilterFile>${project.basedir}/spotbugs-exclude.xml</excludeFilterFile>
412
+ </configuration>
413
</plugin>
414
415
<groupId>org.apache.maven.plugins</groupId>
spotbugs-exclude.xml
@@ -0,0 +1,7 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<FindBugsFilter>
3
+ <!-- Exclude EI_EXPOSE_REP and EI_EXPOSE_REP2 globally -->
4
+ <Match>
5
+ <Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2" />
6
+ </Match>
7
+</FindBugsFilter>
0 commit comments