com.dorongold.task-tree
Owner:
Doron Gold
Gradle plugin that adds a 'taskTree' task that prints task dependency tree
https://github.com/dorongold/gradle-task-tree
Version 2.1.1 (latest)
Created 31 December 2022.
Gradle plugin that adds a 'taskTree' task that prints task dependency tree
Using the plugins DSL:
plugins {
id("com.dorongold.task-tree") version "2.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.dorongold.plugins:task-tree:2.1.1")
}
}
apply(plugin = "com.dorongold.task-tree")
Using the plugins DSL:
plugins {
id "com.dorongold.task-tree" version "2.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.dorongold.plugins:task-tree:2.1.1"
}
}
apply plugin: "com.dorongold.task-tree"