com.nikialeksey.nullfree
Owner: Alexey Nikitin
Nullfree - is the plugin for checking null in your project
https://github.com/nikialeksey/nullfree
Sources: https://github.com/nikialeksey/nullfree
Version 1.5.1 (latest)
1.5.1
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"