强制maven在非空的违规上构建失败

时间:2012-11-08 15:09:05

标签: java maven findbugs

我有下面的简单代码,用maven测试findbugs NonNull注释。

我执行“mvn clean install site”, 我得到一个目录target / site / css和target / site / images, 但仅此而已。 我期待得到一个报告,说println(null)违反了NonNull条件。

获取该报告需要做什么?

另外, 如果存在NonNull违规,有没有办法阻止“mvn clean install”成功?


注意:我知道我可以通过Sonar获得此类报告; 但是,如果出现此类错误,我希望“mvn clean install”失败, 之后无需使用可选的声纳工具。


的src /主/爪哇/测试/ Hello.java

package test;
import edu.umd.cs.findbugs.annotations.NonNull;
public class Hello {
    static public void print(@NonNull Object value) {
        System.out.println("value: " + value.toString());
    }

    static public void main(String[] args) {
        if (args.length > 0) {
            print(args[0]);
        } else {
            print(null);
        }
    }
}

和pom.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>hello</groupId>
  <artifactId>hello</artifactId>
  <version>1.0</version>

  <dependencies>
    <dependency>
      <groupId>net.sourceforge.findbugs</groupId>
      <artifactId>annotations</artifactId>
      <version>1.3.2</version>
    </dependency>
    <dependency>
      <groupId>net.sourceforge.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>1.3.7</version>
    </dependency>
  </dependencies>

  <reporting>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>findbugs-maven-plugin</artifactId>
        <version>2.5.2</version>
      </plugin>
    </plugins>
  </reporting>
</project>

---

更新,解决方案

解决方案,基于Augusto的回答: 将其添加到项目:

下的pom.xml文件中
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>findbugs-maven-plugin</artifactId>
        <version>2.5.2</version>
        <configuration>
          <includeTests>true</includeTests>
        </configuration>
        <executions>
          <execution>
            <phase>compile</phase>
            <goals>
              <goal>check</goal>
            </goals>
          </execution>
          <execution>
            <id>findbugs-test-compile</id>
            <phase>test-compile</phase>
            <goals>
              <goal>check</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

如果存在NonNull违规,“mvn clean install”将失败。

报告对我不起作用,因为我正在使用maven 3, 并且报告功能在maven 3中已更改(现在它使用普通的maven插件)

1 个答案:

答案 0 :(得分:2)

大卫,

您的问题的答案在findbugs maven plugin documentation(参见findbugs:check)