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 bb67d75 commit 2d13c3cCopy full SHA for 2d13c3c
pom.xml
@@ -164,12 +164,13 @@
164
<plugin>
165
<groupId>com.github.spotbugs</groupId>
166
<artifactId>spotbugs-maven-plugin</artifactId>
167
- <version>4.7.3.1</version>
+ <version>4.9.6.0</version>
168
<configuration>
169
<effort>Low</effort>
170
<threshold>Max</threshold>
171
<failOnError>true</failOnError>
172
<includeTests>true</includeTests>
173
+ <excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile>
174
</configuration>
175
<executions>
176
<execution>
spotbugs-exclude.xml
@@ -0,0 +1,7 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<FindBugsFilter>
3
+ <Match>
4
+ <Class name="~.*SecurityInterceptor"/>
5
+ <Bug pattern="EI_EXPOSE_REP2" />
6
+ </Match>
7
+</FindBugsFilter>
0 commit comments