2

你有用法:findbugs-maven-plugin

<project>
  [...]
  <reporting>
    [...]
    <plugin>
      <groupId>org.codehaus.mojo</groupId>
      <artifactId>findbugs-maven-plugin</artifactId>
      <version>1.2.1</version>
      <configuration>
        <xmlOutput>true|false</xmlOutput>
        <xmlOutputDirectory>directory location of findbugs xdoc xml report</xmlOutputDirectory>
        <threshold>High|Normal|Low|Exp|Ignore</threshold>
        <effort>Min|Default|Max</effort>
        <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
        <includeFilterFile>findbugs-include.xml</includeFilterFile>
        <visitors>FindDeadLocalStores,UnreadFields</visitors>
        <omitVisitors>FindDeadLocalStores,UnreadFields</omitVisitors>
        <onlyAnalyze>org.codehaus.mojo.findbugs.*</onlyAnalyze>
        <pluginList>/libs/fb-contrib/fb-contrib-2.8.0.jar</pluginList>
        <debug>true|false</debug>
        <relaxed>true|false</relaxed>
        <findbugsXmlOutput>true|false</findbugsXmlOutput>
        <findbugsXmlOutputDirectory>directory location of findbugs legact xml format report</findbugsXmlOutputDirectory>
      </configuration>
    </plugin>
    [...]
  </reporting>
  [...]
</project>

但是有一次:

mvn site

我得到:

[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.

GroupId: org.codehaus.mojo
ArtifactId: findbugs-maven-plugin
Version: 1.2.1

Reason: Unable to download the artifact from any repository

  org.codehaus.mojo:findbugs-maven-plugin:pom:1.2.1

from the specified remote repositories:
  central (http://repo1.maven.org/maven2)

你知道为什么吗?我应该怎么办?

4

4 回答 4

6

查看存储库,您的版本应该是 1.2,而不是 1.2.1

还有,你的配置不对,需要选择一些选项。所以它应该看起来像:

    <plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>findbugs-maven-plugin</artifactId>
  <version>1.2</version>
  <configuration>
    <threshold>High</threshold>
    <effort>Default</effort>
  </configuration>
</plugin>
于 2009-02-02T18:51:00.297 回答
2

试试看:

<version>1.2</version>

http://repo2.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/

好像他们做了一个简单的复制/粘贴错误。

于 2009-02-02T18:49:59.020 回答
0

作为父项目结构的一部分,将 site.xml 放入 parent-project/src/site:

 |--- src 
      |---site
            |---site.xml 

“Better Builds with Maven”(在线免费书籍)中的示例 site.xml 应该可以帮助您入门。

创建 site.xml 后,mvn site从父项目目录执行。它将获取您的报告设置,包括萤火虫报告。站点建成后,每个子项目都会有目录 /target/site,其中包含 index.html 和项目报告的链接。项目报告应包含萤火虫报告。

于 2009-03-04T16:50:29.280 回答
0

该报告将在目标/站点中。在浏览器中查看文件 index.html,而不是查找项目报告,然后查找错误报告。

于 2009-02-02T19:35:46.277 回答