Search Gradle plugins

Version 0.0.2 (latest)

Created 05 December 2019.

generate asciidoc markup test documentation from junit xml output.

Using the plugins DSL:

plugins {
  id("org.manathome.adocreporter") version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.manathome.adocreporter:junit-asciidoc-reporter:0.0.2")
  }
}

apply(plugin = "org.manathome.adocreporter")

Using the plugins DSL:

plugins {
  id "org.manathome.adocreporter" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.manathome.adocreporter:junit-asciidoc-reporter:0.0.2"
  }
}

apply plugin: "org.manathome.adocreporter"

Learn how to apply plugins to subprojects