Search Gradle plugins

Version 4.0.0 (latest)

4.0.0

Created 16 August 2021.

Gradle Plugin to measure the build time of a project

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.dipien.gradle.timer") version "4.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.dipien:gradle-timer-plugin:4.0.0")
      }
    }
    
    apply(plugin = "com.dipien.gradle.timer")
  • Applying plugins to all subprojects .