life.expert.archidoc
Owner: Wilmer Krisp
Plugin is based on work - Classgraph. You can open the generated .dot file in a vector editor. You can convert then the model into The Standard for exchange of architecture models from The Open Group
https://github.com/wilmerkrisp/archidoc
Sources: https://github.com/wilmerkrisp/archidoc
Version 1.0.11 (latest)
Created 05 March 2019.
Documenting Software Architecture Plugin. Visualizing code of your application. It generates full diagram of your classes into .dot(graphviz) file. Plugin is based on work - Classgraph. You can open the generated .dot file in a vector editor.
Add this plugin to your build using the plugins DSL:
plugins {
id("life.expert.archidoc") version "1.0.11"
}
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("life.expert.archidoc:life.expert.archidoc.gradle.plugin:1.0.11") }
It can then be applied in the precompiled script plugin:plugins { id("life.expert.archidoc") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("life.expert.archidoc:life.expert.archidoc.gradle.plugin:1.0.11") } } apply(plugin = "life.expert.archidoc")
- Applying plugins to all subprojects .