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.1 (latest)
3.0.1
Created 28 July 2024.
Gradle plugin to keep your modules graph healthy and lean with Mermaid output.
Using the plugins DSL:
plugins {
id("cz.mtrakal.module.graph.assertion") version "3.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("cz.mtrakal.module.graph.assertion:plugin:3.0.1")
}
}
apply(plugin = "cz.mtrakal.module.graph.assertion")
Using the plugins DSL:
plugins {
id "cz.mtrakal.module.graph.assertion" version "3.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "cz.mtrakal.module.graph.assertion:plugin:3.0.1"
}
}
apply plugin: "cz.mtrakal.module.graph.assertion"