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