nebula.nebula-release
Owner: Nebula Plugins
Release opinions based around gradle-git
https://github.com/nebula-plugins/nebula-release-plugin
Using the plugins DSL:
plugins {
id("nebula.nebula-release") version "2.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-release-plugin:2.2.4")
}
}
apply(plugin = "nebula.nebula-release")
Using the plugins DSL:
plugins {
id "nebula.nebula-release" version "2.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-release-plugin:2.2.4"
}
}
apply plugin: "nebula.nebula-release"