Search Gradle plugins

Version 1.3.4

Created 31 March 2021.

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.3.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.joselion.pretty-jupiter:pretty-jupiter:1.3.4")
  }
}

apply(plugin = "com.github.joselion.pretty-jupiter")

Using the plugins DSL:

plugins {
  id "com.github.joselion.pretty-jupiter" version "1.3.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.joselion.pretty-jupiter:pretty-jupiter:1.3.4"
  }
}

apply plugin: "com.github.joselion.pretty-jupiter"

Learn how to apply plugins to subprojects