Search Gradle plugins

Version 0.1.2

Created 12 March 2020.

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 "0.1.2"
}

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:0.1.2")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects