Search Gradle plugins

Version 3.5.0 (latest)

3.5.0

Created 11 November 2024.

A Gradle plugin to add full Strict Null Check to your Java code

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.joselion.strict-null-check") version "3.5.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.joselion:strict-null-check:3.5.0")
      }
    }
    
    apply(plugin = "io.github.joselion.strict-null-check")
  • Applying plugins to all subprojects .