cz.malohlava.visteg
Owner:
Michal Malohlava
Gradle plugin exporting task execution graph into .dot file.
https://github.com/mmalohlava/gradle-visteg
Sources: https://github.com/mmalohlava/gradle-visteg.git
Version 1.0.5 (latest)
Created 02 May 2019.
Gradle plugin exporting task execution graph into .dot file.
Add this plugin to your build using the plugins DSL:
plugins {
id("cz.malohlava.visteg") version "1.0.5"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("cz.malohlava.visteg:cz.malohlava.visteg.gradle.plugin:1.0.5") }
It can then be applied in the precompiled script plugin:plugins { id("cz.malohlava.visteg") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cz.malohlava.visteg:cz.malohlava.visteg.gradle.plugin:1.0.5") } } apply(plugin = "cz.malohlava.visteg")
- Applying plugins to all subprojects .