Search Gradle plugins

Version 1.5.1 (latest)

Created 14 May 2020.

Nullfree - is the plugin for checking null in your project

Using the plugins DSL:

plugins {
  id("com.nikialeksey.nullfree") version "1.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.nikialeksey:plugin-gradle:1.5.1")
  }
}

apply(plugin = "com.nikialeksey.nullfree")

Using the plugins DSL:

plugins {
  id "com.nikialeksey.nullfree" version "1.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.nikialeksey:plugin-gradle:1.5.1"
  }
}

apply plugin: "com.nikialeksey.nullfree"

Learn how to apply plugins to subprojects