io.spring.release
Owner: Spring
Provides healthy defaults for a Spring release
https://github.com/spring-gradle-plugins/spring-release-plugin
Sources: https://github.com/spring-gradle-plugins/spring-release-plugin.git
Version 0.20.1 (latest)
0.20.1
Created 12 June 2018.
Provides healthy defaults for a Spring release
Using the plugins DSL:
plugins {
id("io.spring.release") version "0.20.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.spring.gradle:spring-release-plugin:0.20.1")
}
}
apply(plugin = "io.spring.release")
Using the plugins DSL:
plugins {
id "io.spring.release" version "0.20.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.spring.gradle:spring-release-plugin:0.20.1"
}
}
apply plugin: "io.spring.release"