com.exploids.plantumlfromsource
Owner: Luca Selinski
A plugin that generates PlantUML class diagrams from java source files
https://github.com/exploids/plantuml-from-source
Sources: https://github.com/exploids/plantuml-from-source
Version 0.1.2 (latest)
Created 16 July 2021.
A plugin that generates PlantUML class diagrams from java source files
Add this plugin to your build using the plugins DSL:
plugins {
id("com.exploids.plantumlfromsource") version "0.1.2"
}
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.exploids.plantumlfromsource:com.exploids.plantumlfromsource.gradle.plugin:0.1.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.exploids.plantumlfromsource") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.exploids.plantumlfromsource:com.exploids.plantumlfromsource.gradle.plugin:0.1.2") } } apply(plugin = "com.exploids.plantumlfromsource")
- Applying plugins to all subprojects .