com.selesse.git.changelog
Owner: Alex Selesse
Plugin to generate a changelog based on the project's Git history
http://github.com/selesse/gradle-git-changelog
Sources: http://github.com/selesse/gradle-git-changelog
Version 0.4.0-SNAPSHOT (latest)
0.4.0-SNAPSHOT
Created 01 December 2016.
Plugin to generate a changelog based on the project's Git history
Using the plugins DSL:
plugins {
id("com.selesse.git.changelog") version "0.4.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.selesse:gradle-git-changelog:0.4.0-SNAPSHOT")
}
}
apply(plugin = "com.selesse.git.changelog")
Using the plugins DSL:
plugins {
id "com.selesse.git.changelog" version "0.4.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.selesse:gradle-git-changelog:0.4.0-SNAPSHOT"
}
}
apply plugin: "com.selesse.git.changelog"