com.github.ivancarras.graphfity
Owner:
Iván Carrasco
Graphfity creates a dependency node graph about your internal modules dependencies, helping you to analise and optimize the internal dependencies between your project modules, generating a png image about your project which is specially useful if you are developing a multi-module application
https://github.com/ivancarras/graphfity
Sources: https://github.com/ivancarras/graphfity.git
Version 1.1.0 (latest)
Created 11 November 2023.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.ivancarras.graphfity") version "1.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("com.github.ivancarras.graphfity:com.github.ivancarras.graphfity.gradle.plugin:1.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.ivancarras.graphfity") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.ivancarras.graphfity:com.github.ivancarras.graphfity.gradle.plugin:1.1.0") } } apply(plugin = "com.github.ivancarras.graphfity")
- Applying plugins to all subprojects .