io.github.update-changelog
Owner: Carmelo Iriti
This plugin add the feature updates on top of the CHANGELOG file
https://github.com/ciriti/CDelivery
Sources: https://github.com/ciriti/CDelivery
Version 0.5.3 (latest)
0.5.3
Created 19 January 2021.
This plugin add the feature updates on top of the CHANGELOG file
Using the plugins DSL:
plugins {
id("io.github.update-changelog") version "0.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.ciriti:changelog-update:0.5.3")
}
}
apply(plugin = "io.github.update-changelog")
Using the plugins DSL:
plugins {
id "io.github.update-changelog" version "0.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.ciriti:changelog-update:0.5.3"
}
}
apply plugin: "io.github.update-changelog"