io.github.paul-manjarres.test-time-reporter
Owner: Jean Paul Manjarres Correal
A gradle plugin to display test execution statistics
https://github.com/paul-manjarres/tests-time-reporter-gradle-plugin
Sources: https://github.com/paul-manjarres/tests-time-reporter-gradle-plugin.git
Version 0.13 (latest)
0.13
Created 25 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.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.paul-manjarres:plugin:0.13")
}
}
apply(plugin = "io.github.paul-manjarres.test-time-reporter")
Using the plugins DSL:
plugins {
id "io.github.paul-manjarres.test-time-reporter" version "0.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.paul-manjarres:plugin:0.13"
}
}
apply plugin: "io.github.paul-manjarres.test-time-reporter"