Kengo's blog

Technical articles about original projects, JVM, Static Analysis and TypeScript.

jsr305-maven-plugin 1.1 released

Today I've released new version for jsr305-maven-plugin.

This plugin injects precondition check into class file. It means that you don't have to code boring check logics like if (argument == null) {...}.

In this version, this plugin starts to support @ParametersAreNonnullByDefault and @ParametersAreNullableByDefault. It will help you to make your code strictly.