nebula.nothing-plugin
Owner: Nebula Plugins
Plugin that does nothing
https://github.com/nebula-plugins/gradle-nothing-plugin
Sources: https://github.com/nebula-plugins/gradle-nothing-plugin.git
Using the plugins DSL:
plugins {
id("nebula.nothing-plugin") version "2.8.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-nothing-plugin:2.8.2")
}
}
apply(plugin = "nebula.nothing-plugin")
Using the plugins DSL:
plugins {
id "nebula.nothing-plugin" version "2.8.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-nothing-plugin:2.8.2"
}
}
apply plugin: "nebula.nothing-plugin"