Search Gradle plugins

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.joselion.pretty-jupiter") version "3.5.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.joselion:pretty-jupiter:3.5.0")
      }
    }
    
    apply(plugin = "io.github.joselion.pretty-jupiter")
  • Applying plugins to all subprojects .