com.kncept.junit.reporter
Owner: Nicholas Krul
Produces HTML reports from the Junit xml output
https://github.com/kncept/junit-reporter
Sources: https://github.com/kncept/junit-reporter.git
Version 2.0.1-SNAPSHOT
2.0.1-SNAPSHOT
Created 20 June 2019.
Produces HTML reports from the Junit xml output
Using the plugins DSL:
plugins {
id("com.kncept.junit.reporter") version "2.0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.kncept.junit.reporter:junit-reporter:2.0.1-SNAPSHOT")
}
}
apply(plugin = "com.kncept.junit.reporter")
Using the plugins DSL:
plugins {
id "com.kncept.junit.reporter" version "2.0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.kncept.junit.reporter:junit-reporter:2.0.1-SNAPSHOT"
}
}
apply plugin: "com.kncept.junit.reporter"