de.gafertp.plantuml
Owner: Peter Gafert
A very simple plugin to render PlantUML files. Takes a set of diagram files together with desired output files / formats and renders them with PlantUML (http://plantuml.com/).
https://github.com/codecholeric/gradle-plantuml-plugin
Sources: https://github.com/codecholeric/gradle-plantuml-plugin
Version 2.0.1 (latest)
2.0.1
Created 14 April 2020.
A very simple plugin to render PlantUML files. Takes a set of diagram files together with desired output files / formats and renders them with PlantUML (http://plantuml.com/).
Using the plugins DSL:
plugins {
id("de.gafertp.plantuml") version "2.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.gafertp.plantuml:gradle-plantuml-plugin:2.0.1")
}
}
apply(plugin = "de.gafertp.plantuml")
Using the plugins DSL:
plugins {
id "de.gafertp.plantuml" version "2.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.gafertp.plantuml:gradle-plantuml-plugin:2.0.1"
}
}
apply plugin: "de.gafertp.plantuml"