3

我正在尝试将 Maven Spotbugs 插件集成到我项目的 pom.xml 文件中,并使其在运行“mvn site”命令后在“项目报告”部分生成报告。我能够得到其他报告,例如 PMD、CPD 和 Xref 来生成,但是 Spotbugs 给我带来了很多麻烦。命令行表明报告已成功配置,但从未生成。我似乎拥有所有必需的依赖项、构建和报告配置。我已经尝试了来自 Spotbugs github 站点、SpotBugs 文档、多个论坛和教程的各种解决方案,但似乎没有任何东西可以解决我的问题。

谁能给我一个非常详细的分步说明如何通过 pom 文件合并 Spotbugs Maven 插件?我对 Maven 很陌生,可以使用一些帮助!如果我需要包含任何文件,也请告诉我。

4

3 回答 3

4

我按照spotbugs.readthedocs.io的指示进行操作。将此部分添加到pom.xml.

<plugin>
  <groupId>com.github.spotbugs</groupId>
  <artifactId>spotbugs-maven-plugin</artifactId>
  <version>3.1.3</version>
  <dependencies>
    <dependency>
      <groupId>com.github.spotbugs</groupId>
      <artifactId>spotbugs</artifactId>
      <version>3.1.3</version>
    </dependency>
  </dependencies>
</plugin>

然后我跑了mvn spotbugs:spotbugs,它生成了projectDir/target/spotbugsXml.xml. 然后我跑了mvn spotbugs:check它输出

[INFO] --- spotbugs-maven-plugin:3.1.3:check (default-cli) @ my-project ---
[INFO] BugInstance size is 0
[INFO] Error size is 0
[INFO] No errors/warnings found
[INFO] --------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] --------------------------------------------------------------------
[INFO] Total time: 6.731 s
[INFO] Finished at: 2018-05-25T16:31:35-04:00
[INFO] --------------------------------------------------------------------

更新 - 我必须将它添加到项目/报告/插件部分以及构建部分。现在,当我运行它时,它会在其中mvn site生成一个包含 SpotBugs 的部分。Project Reportstarget/site/index.html

<reporting>
  <plugins>
    <!-- SpotBugs -->
    <plugin>
      <groupId>com.github.spotbugs</groupId>
      <artifactId>spotbugs-maven-plugin</artifactId>
      <version>3.1.3</version>
    </plugin>
  </plugins>
</reporting>
于 2018-05-25T20:37:34.260 回答
2

已解决 - 由于某种原因,spotbugs 要求我在它工作之前包含所有必需的配置。我相信在 pom 的报告部分添加以下内容后它会起作用:

        <plugin>
            <groupId>com.github.spotbugs</groupId>
            <artifactId>spotbugs-maven-plugin</artifactId>
            <version>${spotbugs.version}</version>
            <configuration>
                <effort>Max</effort>
                <threshold>Default</threshold>
                <spotbugsXmlOutput>true</spotbugsXmlOutput>
                <spotbugsXmlOutputDirectory>target/site</spotbugsXmlOutputDirectory>
                <skipEmptyReport>false</skipEmptyReport>
                <encoding>${project.build.sourceEncoding}</encoding>
                <includeTests>true</includeTests>
                <classFilesDirectory>${project.build.outputDirectory}</classFilesDirectory>
                <spotbugs.xmlOutput>true</spotbugs.xmlOutput>
                <plugins>
                    <plugin>
                        <groupId>jp.skypencil.findbugs.slf4j</groupId>
                        <artifactId>bug-pattern</artifactId>
                        <version>1.4.0</version>
                    </plugin>
                </plugins>
            </configuration>
            <reportSets>
                <reportSet>
                    <reports>
                         <report>spotbugs</report>
                    </reports>
                </reportSet>
            </reportSets>
        </plugin>
于 2018-05-29T14:44:30.530 回答
2

偶然发现了同样的问题,@Mack 的解决方案对我不起作用。

我的最终解决方案是首先创建类文件。

所以而不是

mvn site

至少一个

mvn compile site

需要创建报告。

于 2018-10-20T10:51:51.850 回答