at.droiddave.graphetto
Owner: David Schreiber-Ranner
Inspector Graphetto is a Gradle build plugin to inspect and visualize the task execution graph of your build.
https://github.com/davidschreiber/graphetto
Sources: https://github.com/davidschreiber/graphetto
Version 0.0.1 (latest)
0.0.1
Created 29 April 2020.
Inspector Graphetto is a Gradle build plugin to inspect and visualize the task execution graph of your build.
Using the plugins DSL:
plugins {
id("at.droiddave.graphetto") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.at.droiddave.graphetto:graphetto:0.0.1")
}
}
apply(plugin = "at.droiddave.graphetto")
Using the plugins DSL:
plugins {
id "at.droiddave.graphetto" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.at.droiddave.graphetto:graphetto:0.0.1"
}
}
apply plugin: "at.droiddave.graphetto"