org.myire.quill.junit
Owner:
Peter Franzen
Configuration of and JUnit summary report for the standard Test task
https://github.com/handmadecode/quill
Sources: https://github.com/handmadecode/quill
Version 3.2 (latest)
Created 20 January 2022.
Configuration of and JUnit summary report for the standard Test task
Using the plugins DSL:
plugins {
id("org.myire.quill.junit") version "3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.myire:quill:3.2")
}
}
apply(plugin = "org.myire.quill.junit")
Using the plugins DSL:
plugins {
id "org.myire.quill.junit" version "3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.myire:quill:3.2"
}
}
apply plugin: "org.myire.quill.junit"