io.github.redgreencoding.plantuml
Owner: Alphonse Bendt
A plugin to convert PlantUML .puml files to one of the supported output formats
https://github.com/red-green-coding/plantuml-gradle-plugin
Sources: https://github.com/red-green-coding/plantuml-gradle-plugin.git
Version 0.3.0 (latest)
Created 18 April 2024.
A plugin to convert PlantUML .puml files to one of the supported output formats
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.redgreencoding.plantuml") version "0.3.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("io.github.redgreencoding.plantuml:io.github.redgreencoding.plantuml.gradle.plugin:0.3.0") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.redgreencoding.plantuml") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.redgreencoding.plantuml:io.github.redgreencoding.plantuml.gradle.plugin:0.3.0") } } apply(plugin = "io.github.redgreencoding.plantuml")
- Applying plugins to all subprojects .