se.bjurr.gitchangelog.git-changelog-gradle-plugin
Owner:
Tomas Bjerre
Gradle plugin for Git Changelog
https://github.com/tomasbjerre/git-changelog-gradle-plugin
Sources: https://github.com/tomasbjerre/git-changelog-gradle-plugin
Version 1.81.3 (latest)
Created 24 September 2023.
Automate changelog and versioning with conventional commits and Git.
Using the plugins DSL:
plugins {
id("se.bjurr.gitchangelog.git-changelog-gradle-plugin") version "1.81.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.se.bjurr.gitchangelog:git-changelog-gradle-plugin:1.81.3")
}
}
apply(plugin = "se.bjurr.gitchangelog.git-changelog-gradle-plugin")
Using the plugins DSL:
plugins {
id "se.bjurr.gitchangelog.git-changelog-gradle-plugin" version "1.81.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.se.bjurr.gitchangelog:git-changelog-gradle-plugin:1.81.3"
}
}
apply plugin: "se.bjurr.gitchangelog.git-changelog-gradle-plugin"