com.doist.gradle.changelog
Owner: Doist
Gradle plugin to manage changelog.
https://github.com/Doist/changelog-gradle-plugin
Sources: https://github.com/Doist/changelog-gradle-plugin
Version 0.1.0 (latest)
0.1.0
Created 06 March 2023.
Gradle plugin to manage changelog.
Using the plugins DSL:
plugins {
id("com.doist.gradle.changelog") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.doist.gradle:changelog:0.1.0")
}
}
apply(plugin = "com.doist.gradle.changelog")
Using the plugins DSL:
plugins {
id "com.doist.gradle.changelog" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.doist.gradle:changelog:0.1.0"
}
}
apply plugin: "com.doist.gradle.changelog"