org.manathome.adocreporter
Owner: man
generate asciidoc markup test documentation from junit xml output.
https://gitlab.com/spare-time-demos/junit-asciidoc-reporter
Sources: https://gitlab.com/spare-time-demos/junit-asciidoc-reporter.git
Version 0.0.2 (latest)
0.0.2
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"