com.k4zy.time-trace
Owner: Yoshida
Measure the execution time of each task.
https://github.com/k4zy/TimeTraceReporter
Sources: https://github.com/k4zy/TimeTraceReporter.git
Version 0.1.3 (latest)
0.1.3
Created 25 August 2021.
Measure the execution time of each task.
Using the plugins DSL:
plugins {
id("com.k4zy.time-trace") version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.k4zy:plugin:0.1.3")
}
}
apply(plugin = "com.k4zy.time-trace")
Using the plugins DSL:
plugins {
id "com.k4zy.time-trace" version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.k4zy:plugin:0.1.3"
}
}
apply plugin: "com.k4zy.time-trace"