搜索Gradle插件

io.github.cdsap.talaiot.plugin.graph

Talaiot, 图形插件,简单且可扩展的插件,用于跟踪Gradle项目中任务和构建时间。

https://github.com/cdsap/Talaiot

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

版本 1.5.3(最新版)

1.5.3

创建于2022年5月25日。

Talaiot, 图形插件,简单且可扩展的插件,用于跟踪Gradle项目中任务和构建时间。

使用插件DSL

plugins {
  id("io.github.cdsap.talaiot.plugin.graph") version "1.5.3"
}

使用旧插件应用

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

apply(plugin = "io.github.cdsap.talaiot.plugin.graph")

使用插件DSL

plugins {
  id "io.github.cdsap.talaiot.plugin.graph" version "1.5.3"
}

使用旧插件应用

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

apply plugin: "io.github.cdsap.talaiot.plugin.graph"

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