com.cosminpolifronie.gradle.plantuml
Owner: Cosmin Polifronie
A 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/cosminpolifronie/gradle-plantuml-plugin
Sources: https://github.com/cosminpolifronie/gradle-plantuml-plugin
Version 1.6.0 (latest)
1.6.0
Created 01 July 2019.
A 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("com.cosminpolifronie.gradle.plantuml") version "1.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.cosminpolifronie.gradle:gradle-plantuml-plugin:1.6.0")
}
}
apply(plugin = "com.cosminpolifronie.gradle.plantuml")
Using the plugins DSL:
plugins {
id "com.cosminpolifronie.gradle.plantuml" version "1.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.cosminpolifronie.gradle:gradle-plantuml-plugin:1.6.0"
}
}
apply plugin: "com.cosminpolifronie.gradle.plantuml"