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.1

Created 12 July 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects