nebula.more-nothing-plugin
Owner: Nebula Plugins
Another plugin that does nothing
https://github.com/nebula-plugins/gradle-nothing-plugin
Sources: https://github.com/nebula-plugins/gradle-nothing-plugin.git
Version 2.9.0 (latest)
2.9.0
Created 14 September 2021.
Another plugin that does nothing
Using the plugins DSL:
plugins {
id("nebula.more-nothing-plugin") version "2.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-nothing-plugin:2.9.0")
}
}
apply(plugin = "nebula.more-nothing-plugin")
Using the plugins DSL:
plugins {
id "nebula.more-nothing-plugin" version "2.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-nothing-plugin:2.9.0"
}
}
apply plugin: "nebula.more-nothing-plugin"