gpt4 book ai didi

java - 强制 Maven 因非空违规而导致构建失败

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:31:34 25 4
gpt4 key购买 nike

我有下面的简单代码,用于使用 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/main/java/test/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 插件)

最佳答案

大卫,

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

关于java - 强制 Maven 因非空违规而导致构建失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13291713/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com