Search Gradle plugins

Version 0.2.0 (latest)

Created 11 April 2024.

A gradle plugin to display test execution statistics

Using the plugins DSL:

plugins {
  id("io.github.paul-manjarres.test-time-reporter") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.paul-manjarres:plugin:0.2.0")
  }
}

apply(plugin = "io.github.paul-manjarres.test-time-reporter")

Using the plugins DSL:

plugins {
  id "io.github.paul-manjarres.test-time-reporter" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.paul-manjarres:plugin:0.2.0"
  }
}

apply plugin: "io.github.paul-manjarres.test-time-reporter"

Learn how to apply plugins to subprojects