We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kotlin
Don't include the jsr 305 dependency in the target artifact, use optional for the jsr 305 dependency.
jsr 305
optional
<dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> <optional>true</optional> </dependency>
@NotNull
@Nullable
@CheckForNull
The text was updated successfully, but these errors were encountered:
JSR 305 intergration #101
86de6c6
0125cf5
f598e79
oldratlee
No branches or pull requests
Kotlin
.NOTE
Don't include the
jsr 305
dependency in the target artifact, useoptional
for thejsr 305
dependency.related resources
https://jcp.org/en/jsr/detail?id=305
@NotNull
Java annotation should I use?https://stackoverflow.com/questions/4963300/which-notnull-java-annotation-should-i-use
@Nullable
vs@CheckForNull
https://stackoverflow.com/questions/12301570/javax-annotation-nullable-vs-checkfornull
https://stackoverflow.com/questions/2289694/what-is-the-status-of-jsr-305
The text was updated successfully, but these errors were encountered: