emetriq.changelog-release
Owner: emetriq
Creating a semi-automatic changelog on top of nebula release plugin
https://github.com/emetriq/gradle-changelog-plugin
Sources: https://github.com/emetriq/gradle-changelog-plugin
Version 1.4.0 (latest)
1.4.0
Created 29 December 2017.
Creating a semi-automatic changelog on top of nebula release plugin
Using the plugins DSL:
plugins {
id("emetriq.changelog-release") version "1.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.emetriq.gradle:changelog-release-plugin:1.4.0")
}
}
apply(plugin = "emetriq.changelog-release")
Using the plugins DSL:
plugins {
id "emetriq.changelog-release" version "1.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.emetriq.gradle:changelog-release-plugin:1.4.0"
}
}
apply plugin: "emetriq.changelog-release"