Search Gradle plugins

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"

Learn how to apply plugins to subprojects