Search Gradle plugins

Version 1.1.0

Created 08 May 2019.

Nullfree - is the plugin for checking null in your project

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.nikialeksey.nullfree"

Learn how to apply plugins to subprojects