daveight.changelog
Owner: daveight
Changelog plugin for gradle
https://github.com/daveight/gradle-changelog-plugin
Sources: https://github.com/daveight/gradle-changelog-plugin
Version 0.1.0 (latest)
0.1.0
Created 29 July 2019.
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
Changelog plugin for gradle
Using the plugins DSL:
plugins {
id("daveight.changelog") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.daveight.gradle:changelog:0.1.0")
}
}
apply(plugin = "daveight.changelog")
Using the plugins DSL:
plugins {
id "daveight.changelog" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.daveight.gradle:changelog:0.1.0"
}
}
apply plugin: "daveight.changelog"