net.siggijons.gradle.graphuntangler
Owner:
Siggi Jonsson
Gradle plugin to help untangle your dependencies.
https://github.com/siggijons/graph-untangler-plugin
Sources: https://github.com/siggijons/graph-untangler-plugin.git
Version 0.0.5 (latest)
Created 23 December 2023.
Gradle plugin to help untangle your dependencies.
Add this plugin to your build using the plugins DSL:
plugins {
id("net.siggijons.gradle.graphuntangler") version "0.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("net.siggijons.gradle.graphuntangler:net.siggijons.gradle.graphuntangler.gradle.plugin:0.0.5") }It can then be applied in the precompiled script plugin:plugins { id("net.siggijons.gradle.graphuntangler") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.siggijons.gradle.graphuntangler:net.siggijons.gradle.graphuntangler.gradle.plugin:0.0.5") } } apply(plugin = "net.siggijons.gradle.graphuntangler") - Applying plugins to all subprojects .