scabbard.gradle
Owner: Arunkumar Sampathkumar
Gradle plugin to visualize Dagger 2 dependency graph
https://github.com/arunkumar9t2/scabbard
Sources: https://github.com/arunkumar9t2/scabbard
Version 0.5.0-alpha01
Created 19 June 2021.
Gradle plugin to visualize Dagger 2 dependency graph
Add this plugin to your build using the plugins DSL:
plugins {
id("scabbard.gradle") version "0.5.0-alpha01"
}
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("scabbard.gradle:scabbard.gradle.gradle.plugin:0.5.0-alpha01") }
It can then be applied in the precompiled script plugin:plugins { id("scabbard.gradle") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("scabbard.gradle:scabbard.gradle.gradle.plugin:0.5.0-alpha01") } } apply(plugin = "scabbard.gradle")
- Applying plugins to all subprojects .