de.virtimo.jira-report
Owner: Andre Schlegel-Tylla
Create template powered reports (like changelogs) from your Jira issues
https://github.com/Virtimo/gradle-jira-report
Sources: https://github.com/Virtimo/gradle-jira-report
Version 1.0.0 (latest)
Created 13 October 2021.
Create template powered reports (like changelogs) from your Jira issues
Add this plugin to your build using the plugins DSL:
plugins {
id("de.virtimo.jira-report") version "1.0.0"
}
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("de.virtimo.jira-report:de.virtimo.jira-report.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("de.virtimo.jira-report") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.virtimo.jira-report:de.virtimo.jira-report.gradle.plugin:1.0.0") } } apply(plugin = "de.virtimo.jira-report")
- Applying plugins to all subprojects .