Skip to content

Commit 2d13c3c

Browse files
committed
update
1 parent bb67d75 commit 2d13c3c

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,13 @@
164164
<plugin>
165165
<groupId>com.github.spotbugs</groupId>
166166
<artifactId>spotbugs-maven-plugin</artifactId>
167-
<version>4.7.3.1</version>
167+
<version>4.9.6.0</version>
168168
<configuration>
169169
<effort>Low</effort>
170170
<threshold>Max</threshold>
171171
<failOnError>true</failOnError>
172172
<includeTests>true</includeTests>
173+
<excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile>
173174
</configuration>
174175
<executions>
175176
<execution>

spotbugs-exclude.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)