no.f12.dsm
CC-compatible
Owner:
Anders Sveen
Analyzes compiled JVM bytecode to produce a package dependency matrix. Useful for identifying cyclic dependencies, measuring coupling, and guiding refactoring.
Version 0.1.0 (latest)
Created 09 March 2026.
Analyzes compiled JVM bytecode to produce a package dependency matrix. Useful for identifying cyclic dependencies, measuring coupling, and guiding refactoring.
Add this plugin to your build using the plugins DSL:
plugins {
id("no.f12.dsm") version "0.1.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("no.f12.dsm:no.f12.dsm.gradle.plugin:0.1.0") }It can then be applied in the precompiled script plugin:plugins { id("no.f12.dsm") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("no.f12.dsm:no.f12.dsm.gradle.plugin:0.1.0") } } apply(plugin = "no.f12.dsm") - Applying plugins to all subprojects .