我想从我的项目中为单个模块运行findbugs。更新了像pom.xml一样 http://mojo.codehaus.org/findbugs-maven-plugin/usage.html
<项目>
[...]
< build>
[...]
< plugin>
< groupId>org.codehaus.mojo</groupId>
< artifactId>findbugs-maven-plugin</artifactId>
< version>2.5.2</version>
< configuration>
< findbugsXmlWithMessages>true</findbugsXmlWithMessages>
< onlyAnalyze>nafw.-</onlyAnalyze>
< /configuration>
< executions>
< execution>
< phase>verify</phase>
< goals>
< goal>check</goal>
< /goals>
< /execution>
< /executions>
< /plugin>
[...]
但是,当我运行“mvn findbugs:findbugs”或“mvn verify”时,findbugs运行整个项目而不是单个模块,即“nafw”。请帮助解决它可能的答案以及我不正确的地方。