Search Gradle plugins

Version 1.7.0 (latest)

1.7.0

Created 22 May 2022.

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("com.github.joselion.pretty-jupiter") version "1.7.0"
}

See also:

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