io.github.joselion.pretty-jupiter
Owner: Jose Luis Leon Torres
Gradle plugin to log JUnit Jupiter tests with a pretty Mocha.js style
https://joselion.github.io/pretty-jupiter/
Sources: https://github.com/JoseLion/pretty-jupiter.git
Version 3.5.0 (latest)
3.5.0
Created 10 November 2024.
Gradle plugin to log JUnit Jupiter tests with a pretty Mocha.js style
Using the plugins DSL:
plugins {
id("io.github.joselion.pretty-jupiter") version "3.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.joselion:pretty-jupiter:3.5.0")
}
}
apply(plugin = "io.github.joselion.pretty-jupiter")
Using the plugins DSL:
plugins {
id "io.github.joselion.pretty-jupiter" version "3.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.joselion:pretty-jupiter:3.5.0"
}
}
apply plugin: "io.github.joselion.pretty-jupiter"