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 "0.0.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-nothing-plugin:0.0.14")
}
}
apply(plugin = "nebula.nothing-plugin")
Using the plugins DSL:
plugins {
id "nebula.nothing-plugin" version "0.0.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-nothing-plugin:0.0.14"
}
}
apply plugin: "nebula.nothing-plugin"