Search Gradle plugins

Version 2.0.0

2.0.0

Created 25 May 2022.

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 "2.0.0"
}

See also:

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