A tool to verify whether JSpecify nullness annotations are applied to your codebase.
Check out the sample projects for the examples of actual usage.
Detects unspecified nullness types based on @Nullable
, @NonNull
, @NullMarked
, and
@NullUnmarked
annotations.
public class SayHello {
public void say(String message) {
System.out.println(message);
}
}
Gives:
SayHello#say(java.lang.String): Unspecified nullness found:
void say(java.lang.String*)
^
Detects improper usage of JSpecify annotations.
@NullMarked
class DataHolder {
private @Nullable byte[] data;
@NullMarked
@NullUnmarked
void sayHi(String name) {
System.out.println("Hi " + name);
}
}
Gives:
DataHolder#data: Primitive types cannot be annotated with @Nullable or @NonNull!
DataHolder#sayHi(java.lang.String): Irrelevant annotations, the method should not be annotated with both @NullMarked and @NullUnmarked at the same time!
Requires to put @NullMarked
on classes.
- Analyzes
.jar
files or directories containing.class
files. - Analyzes files compiled to Java 8+
- Allows applying checks only on new classes, which is helpful during the annotation migration process or initial adoption of JSpecify annotations in the project.
- Generates a JSON report of the analysis results.
- Maven plugin to simplify integration with CI/CD workflows.
- Java 17+
- Maven
The plugin provides two goals:
check
- Analyzes the codebase to detect types with an unspecified nullness value.
If any are found, the execution fails and displays the details in the output.report
- Generates a JSON report containing details about places in the code where nullness is unspecified.
To ensure your code is fully annotated with nullness annotations, add the following plugin
configuration to your pom.xml
:
<!-- ... -->
<build>
<plugins>
<plugin>
<groupId>eu.soft-pol.lib.nullaudit</groupId>
<artifactId>nullaudit-maven-plugin</artifactId>
<version>0.4.0</version>
<configuration>
<rules>
<requireNullMarked>
<!-- Optional: file that contains a list of FQCNs to exclude -->
<!-- <exclusionsFile>legacy-classes.txt</exclusionsFile> -->
</requireNullMarked>
<requireSpecifiedNullness>
<!-- <exclusionsFile>legacy-classes.txt</exclusionsFile> -->
</requireSpecifiedNullness>
<verifyJSpecifyAnnotations/>
</rules>
<!-- Optional: limit the number of issues displayed on the console -->
<maxErrors>100</maxErrors>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- ... -->
You can also use NullAudit outside a Maven project.
For example, to find unspecified nullness in a .jar
file, run:
mvn eu.soft-pol.lib.nullaudit:nullaudit-maven-plugin:0.4.0:check -Dnullaudit.input=log4j-core-2.24.3.jar
To generate a JSON report for a .jar
file, run:
mvn eu.soft-pol.lib.nullaudit:nullaudit-maven-plugin:0.4.0:report -Dnullaudit.input=log4j-core-2.24.3.jar -Dnullaudit.reportFile=report.json