cz.mtrakal.module.graph.assertion
Owner:
Matěj Trakal
Gradle plugin to keep your modules graph healthy and lean with Mermaid output.
https://github.com/mtrakal/modules-graph-assert
Sources: https://github.com/mtrakal/modules-graph-assert
Version 3.0.0
Created 12 July 2024.
Gradle plugin to keep your modules graph healthy and lean with Mermaid output.
Add this plugin to your build using the plugins DSL:
plugins {
id("cz.mtrakal.module.graph.assertion") version "3.0.0"
}
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.mtrakal.module.graph.assertion:cz.mtrakal.module.graph.assertion.gradle.plugin:3.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("cz.mtrakal.module.graph.assertion") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cz.mtrakal.module.graph.assertion:cz.mtrakal.module.graph.assertion.gradle.plugin:3.0.0") } } apply(plugin = "cz.mtrakal.module.graph.assertion")
- Applying plugins to all subprojects .