com.netflix.nebula.release
Owner: Nebula Plugins
Release opinions on top of gradle-git
https://github.com/nebula-plugins/nebula-release-plugin
Sources: https://github.com/nebula-plugins/nebula-release-plugin.git
Version 19.0.10 (latest)
19.0.10
Created 21 June 2024.
Release opinions on top of gradle-git
Using the plugins DSL:
plugins {
id("com.netflix.nebula.release") version "19.0.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-release-plugin:19.0.10")
}
}
apply(plugin = "com.netflix.nebula.release")
Using the plugins DSL:
plugins {
id "com.netflix.nebula.release" version "19.0.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-release-plugin:19.0.10"
}
}
apply plugin: "com.netflix.nebula.release"