io.gitlab.plunts.plantuml
Owner: Plunts
Gradle plugin to build PlantUML diagrams from code (for living and up-to-date documentation)
https://gitlab.com/Plunts/plantuml-gradle-plugin
Sources: https://gitlab.com/Plunts/plantuml-gradle-plugin
Version 2.1.7 (latest)
2.1.7
Created 06 March 2024.
Gradle plugin to build PlantUML diagrams from code (for living and up-to-date documentation)
Using the plugins DSL:
plugins {
id("io.gitlab.plunts.plantuml") version "2.1.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.gitlab.plunts:plantuml-gradle-plugin:2.1.7")
}
}
apply(plugin = "io.gitlab.plunts.plantuml")
Using the plugins DSL:
plugins {
id "io.gitlab.plunts.plantuml" version "2.1.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.gitlab.plunts:plantuml-gradle-plugin:2.1.7"
}
}
apply plugin: "io.gitlab.plunts.plantuml"