Search Gradle plugins

Version 0.1.2 (latest)

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"

Learn how to apply plugins to subprojects