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-publishing-plugin.git
Version 4.24.2
4.24.2
Created 05 August 2016.
Sets up publishing and release process for all of the other nebula plugins
Using the plugins DSL:
plugins {
id("nebula.plugin-plugin") version "4.24.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-plugin-plugin:4.24.2")
}
}
apply(plugin = "nebula.plugin-plugin")
Using the plugins DSL:
plugins {
id "nebula.plugin-plugin" version "4.24.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-plugin-plugin:4.24.2"
}
}
apply plugin: "nebula.plugin-plugin"