io.github.man-at-home.gitlabreporter
Owner: man
generate asciidoc markup documentation from gitlab issues (at the moment: a changelog).
https://gitlab.com/spare-time-demos/gitlab-asciidoc-reporter
Sources: https://gitlab.com/spare-time-demos/gitlab-asciidoc-reporter.git
Version 0.1.2 (latest)
0.1.2
Created 10 March 2023.
generate asciidoc markup documentation from gitlab issues (at the moment: a changelog).
Using the plugins DSL:
plugins {
id("io.github.man-at-home.gitlabreporter") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.man-at-home.gitlabreporter:plugin:0.1.2")
}
}
apply(plugin = "io.github.man-at-home.gitlabreporter")
Using the plugins DSL:
plugins {
id "io.github.man-at-home.gitlabreporter" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.man-at-home.gitlabreporter:plugin:0.1.2"
}
}
apply plugin: "io.github.man-at-home.gitlabreporter"