com.biformatic.archtools.ArchDescription
Owner: Aleksandar Milenovic
Generates Architecture Description based on supplied Markdown templates. Within the template you can use PlantUml directives.
https://github.com/amilenovic/ArchDescriptionGradlePlugin.git
Sources: https://github.com/amilenovic/ArchDescriptionGradlePlugin.git
Version 0.0.8 (latest)
Created 03 February 2016.
Generates Architecture Description based on supplied Markdown templates.
Within the template you can use PlantUml directives.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.biformatic.archtools.ArchDescription") version "0.0.8"
}
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.biformatic.archtools.ArchDescription:com.biformatic.archtools.ArchDescription.gradle.plugin:0.0.8") }
It can then be applied in the precompiled script plugin:plugins { id("com.biformatic.archtools.ArchDescription") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.biformatic.archtools.ArchDescription:com.biformatic.archtools.ArchDescription.gradle.plugin:0.0.8") } } apply(plugin = "com.biformatic.archtools.ArchDescription")
- Applying plugins to all subprojects .