Search Gradle plugins

Version 1.4.4 (latest)

1.4.4

Created 30 October 2021.

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("com.github.joselion.strict-null-check") version "1.4.4"
}

See also:

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