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)
0.3.0
Created 18 April 2024.
A plugin to convert PlantUML .puml files to one of the supported output formats
Using the plugins DSL:
plugins {
id("io.github.redgreencoding.plantuml") version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.redgreencoding:plantuml-gradle-plugin:0.3.0")
}
}
apply(plugin = "io.github.redgreencoding.plantuml")
Using the plugins DSL:
plugins {
id "io.github.redgreencoding.plantuml" version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.redgreencoding:plantuml-gradle-plugin:0.3.0"
}
}
apply plugin: "io.github.redgreencoding.plantuml"