我想为我的项目中的单个模块运行 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”。请帮助可能的答案以及我不正确的地方。