IDEA可以直接在setting中下载checkStyle和findBugs
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.4</version> <executions> <execution> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <effort>Max</effort> <threshold>Low</threshold> <includeFilterFile>config/findbugs-rules.xml</includeFilterFile> </configuration></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-checkstyle-plugin</artifactId><version>2.17</version><executions> <execution> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution></executions><configuration> <consoleOutput>true</consoleOutput> <configLocation>config/checkstyle-rules.xml</configLocation> <suppressionsLocation>config/checkstyle-suppressions.xml</suppressionsLocation> <failsOnError>true</failsOnError> <includeTestSourceDirectory>false</includeTestSourceDirectory></configuration></plugin>
时间: 2024-12-30 13:33:41