搜索 Gradle 插件

com.cdsap.talaiot.plugin.graph

一个简单且可扩展的插件,用于跟踪在您的 Gradle 项目中任务的和构建时间。

https://github.com/cdsap/Talaiot

来源:https://github.com/cdsap/Talaiot

版本 1.4.2 (最新)

1.4.2

创建于 2021 年 3 月 7 日。

此插件版本将不再解析,因为 JCenter 将永久重定向到 Maven Central,因为它仅使用可在 JCenter 中找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Talaiot, Graph Plugin, simple and extensible plugin to track task and build times in your Gradle Project.

使用 插件 DSL

plugins {
  id("com.cdsap.talaiot.plugin.graph") version "1.4.2"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.cdsap.talaiot.plugin:graph:1.4.2")
  }
}

apply(plugin = "com.cdsap.talaiot.plugin.graph")

使用 插件 DSL

plugins {
  id "com.cdsap.talaiot.plugin.graph" version "1.4.2"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.cdsap.talaiot.plugin:graph:1.4.2"
  }
}

apply plugin: "com.cdsap.talaiot.plugin.graph"

了解如何将插件应用到子项目