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