import javax.annotation.ParametersAreNonnullByDefault失败,但为什么呢?

时间:2016-10-18 11:29:16

标签: java annotations java-8

我的导入语句包含
import javax.annotation.ParametersAreNonnullByDefault;

但它失败了,说'找不到符号......'

我使用Netbeans 8.0.2,我的项目使用源格式JDK8,Java平台1.8.0.60

键入' javax.annotation。'不会在自动完成弹出窗口中显示ParametersAreNonnullByDefault。

我试图在Netbeans中从这个项目构建源代码: https://github.com/fge/java7-fs-more

如何使import语句有效?

1 个答案:

答案 0 :(得分:0)

您可能缺少JSR305依赖性。例如。对于gradle:

dependencies { compileOnly 'com.google.code.findbugs:jsr305:3.0.1' }