Search Gradle plugins

Version 0.11

0.11

Created 18 June 2024.

A gradle plugin to display test execution statistics

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects