nebula.nebula-release
Owner: Nebula Plugins
Release opinions based around gradle-git
https://github.com/nebula-plugins/nebula-release-plugin
Version 4.0.1 (latest)
4.0.1
Created 05 February 2016.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Release opinions on top of gradle-git
Using the plugins DSL:
plugins {
id("nebula.nebula-release") version "4.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-release-plugin:4.0.1")
}
}
apply(plugin = "nebula.nebula-release")
Using the plugins DSL:
plugins {
id "nebula.nebula-release" version "4.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-release-plugin:4.0.1"
}
}
apply plugin: "nebula.nebula-release"