com.silverjan.plugins.show-graph-plugin
所有者: jbi
一个简单的 Gradle 插件,显示任务执行顺序、依赖任务和描述
https://github.com/SilverJan/gradle-showGraph
来源: https://github.com/SilverJan/gradle-showGraph.git
版本 1.0.4 (最新版)
1.0.4
创建于 2016 年 10 月 25 日。
一个简单的 Gradle 插件,显示任务执行顺序、依赖任务和描述
使用 插件 DSL
plugins {
id("com.silverjan.plugins.show-graph-plugin") version "1.0.4"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.silverjan.plugins:gradle-showGraph:1.0.4")
}
}
apply(plugin = "com.silverjan.plugins.show-graph-plugin")
使用 插件 DSL
plugins {
id "com.silverjan.plugins.show-graph-plugin" version "1.0.4"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.silverjan.plugins:gradle-showGraph:1.0.4"
}
}
apply plugin: "com.silverjan.plugins.show-graph-plugin"