搜索 Gradle 插件

com.github.vasugr.tasktracker

所有者: vasu

一个轻量级工具,可以显示 gradle 项目的任务图和任务耗时

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

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

版本 0.0.4 (最新版)

0.0.4

创建于 2021 年 7 月 15 日。

调整报告格式

使用 插件 DSL

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

使用 旧版插件应用程序

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

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

使用 插件 DSL

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

使用 旧版插件应用程序

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

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

学习如何将插件应用到子项目中