Search Gradle plugins

com.github.vasugr.tasktracker

Owner: vasu

A lightweight tool which displays task graph and time taken by tasks in a gradle project

https://github.com/vasugr/Task-Tracker

Sources: https://github.com/vasugr/Task-Tracker

Version 0.0.4 (latest)

Created 15 July 2021.

Tweaked Report format

Using the plugins DSL:

plugins {
  id("com.github.vasugr.tasktracker") version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.vasugr:plugin:0.0.4")
  }
}

apply(plugin = "com.github.vasugr.tasktracker")

Using the plugins DSL:

plugins {
  id "com.github.vasugr.tasktracker" version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.vasugr:plugin:0.0.4"
  }
}

apply plugin: "com.github.vasugr.tasktracker"

Learn how to apply plugins to subprojects