com.netflix.nebula.plugin-plugin
Owner: Nebula Plugins
Sets up publishing and release process for all of the other nebula plugins
https://github.com/nebula-plugins/nebula-plugin-plugin
Sources: https://github.com/nebula-plugins/nebula-plugin-plugin.git
Version 21.0.0
21.0.0
Created 08 August 2024.
Sets up publishing and release process for all of the other nebula plugins
Using the plugins DSL:
plugins {
id("com.netflix.nebula.plugin-plugin") version "21.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-plugin-plugin:21.0.0")
}
}
apply(plugin = "com.netflix.nebula.plugin-plugin")
Using the plugins DSL:
plugins {
id "com.netflix.nebula.plugin-plugin" version "21.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-plugin-plugin:21.0.0"
}
}
apply plugin: "com.netflix.nebula.plugin-plugin"