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)
Created 01 December 2016.
Plugin to generate a changelog based on the project's Git history
Add this plugin to your build using the plugins DSL:
plugins {
id("com.selesse.git.changelog") version "0.4.0-SNAPSHOT"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.selesse.git.changelog:com.selesse.git.changelog.gradle.plugin:0.4.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("com.selesse.git.changelog") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.selesse.git.changelog:com.selesse.git.changelog.gradle.plugin:0.4.0-SNAPSHOT") } } apply(plugin = "com.selesse.git.changelog")
- Applying plugins to all subprojects .