|
168 | 168 | </properties> |
169 | 169 |
|
170 | 170 | <build> |
171 | | - <defaultGoal>clean verify apache-rat:check clirr:check javadoc:javadoc</defaultGoal> |
| 171 | + <defaultGoal>clean verify apache-rat:check clirr:check checkstyle:check spotbugs:check javadoc:javadoc</defaultGoal> |
172 | 172 | <plugins> |
173 | 173 | <plugin> |
174 | 174 | <artifactId>maven-compiler-plugin</artifactId> |
|
208 | 208 | <suppressionsLocation>${basedir}/src/main/resources/checkstyle/checkstyle-suppressions.xml</suppressionsLocation> |
209 | 209 | </configuration> |
210 | 210 | </plugin> |
211 | | - <!-- Allow findbugs to be run interactively; keep in sync with report config below --> |
212 | 211 | <plugin> |
213 | | - <groupId>org.codehaus.mojo</groupId> |
214 | | - <artifactId>findbugs-maven-plugin</artifactId> |
215 | | - <version>${commons.findbugs.version}</version> |
| 212 | + <groupId>com.github.spotbugs</groupId> |
| 213 | + <artifactId>spotbugs-maven-plugin</artifactId> |
| 214 | + <version>${commons.spotbugs.version}</version> |
216 | 215 | <configuration> |
217 | | - <threshold>Normal</threshold> |
218 | | - <effort>Default</effort> |
219 | | - <excludeFilterFile>${basedir}/src/main/resources/findbugs/findbugs-exclude-filter.xml</excludeFilterFile> |
| 216 | + <excludeFilterFile>${basedir}/src/site/resources/spotbugs/spotbugs-exclude-filter.xml</excludeFilterFile> |
220 | 217 | </configuration> |
221 | 218 | </plugin> |
222 | 219 | <!-- Allow pmd to be run interactively; keep in sync with report config below --> |
|
287 | 284 | </reportSet> |
288 | 285 | </reportSets> |
289 | 286 | </plugin> |
| 287 | + <plugin> |
| 288 | + <groupId>com.github.spotbugs</groupId> |
| 289 | + <artifactId>spotbugs-maven-plugin</artifactId> |
| 290 | + <version>${commons.spotbugs.version}</version> |
| 291 | + <configuration> |
| 292 | + <excludeFilterFile>${basedir}/src/site/resources/spotbugs/spotbugs-exclude-filter.xml</excludeFilterFile> |
| 293 | + </configuration> |
| 294 | + </plugin> |
290 | 295 | <plugin> |
291 | 296 | <groupId>org.apache.maven.plugins</groupId> |
292 | 297 | <artifactId>maven-pmd-plugin</artifactId> |
|
300 | 305 | </rulesets> |
301 | 306 | </configuration> |
302 | 307 | </plugin> |
303 | | - <plugin> |
304 | | - <groupId>org.codehaus.mojo</groupId> |
305 | | - <artifactId>findbugs-maven-plugin</artifactId> |
306 | | - <version>${commons.findbugs.version}</version> |
307 | | - <configuration> |
308 | | - <threshold>Normal</threshold> |
309 | | - <effort>Default</effort> |
310 | | - <excludeFilterFile>${basedir}/src/main/resources/findbugs/findbugs-exclude-filter.xml</excludeFilterFile> |
311 | | - </configuration> |
312 | | - </plugin> |
313 | 308 | <plugin> |
314 | 309 | <groupId>org.codehaus.mojo</groupId> |
315 | 310 | <artifactId>taglist-maven-plugin</artifactId> |
|
0 commit comments