rpost.grantt
所有者: Radek Postołowicz
使用甘特图进行 Gradle 构建可视化
https://github.com/rpost/grantt/
来源:https://github.com/rpost/grantt/
使用 plugins DSL
plugins {
id("rpost.grantt") version "0.3"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.rpost:grantt:0.3")
}
}
apply(plugin = "rpost.grantt")
使用 plugins DSL
plugins {
id "rpost.grantt" version "0.3"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.rpost:grantt:0.3"
}
}
apply plugin: "rpost.grantt"