com.a65apps.changelog
Owner: Roman Romanov
Plugin for automatic generation of changelog from git repository
https://github.com/goblinr/git-changelog-gradle-plugin
Sources: https://github.com/goblinr/git-changelog-gradle-plugin.git
Version 1.1.10 (latest)
1.1.10
Created 30 March 2022.
Plugin for automatic generation of changelog from git repository
Using the plugins DSL:
plugins {
id("com.a65apps.changelog") version "1.1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.a65apps.changelog:plugin:1.1.10")
}
}
apply(plugin = "com.a65apps.changelog")
Using the plugins DSL:
plugins {
id "com.a65apps.changelog" version "1.1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.a65apps.changelog:plugin:1.1.10"
}
}
apply plugin: "com.a65apps.changelog"