swehacker.plantuml
Owner: Patrik Falk
Generates UML diagrams that can be used with documentation tools like asciidoctor.
Sources: https://github.com/swehacker/gradle-plantuml
Version 0.1.1 (latest)
0.1.1
Created 07 October 2018.
Generates UML diagrams that can be used with documentation tools like asciidoctor.
Using the plugins DSL:
plugins {
id("swehacker.plantuml") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("swehacker.gradle.plugin.plantuml:plantuml-generator:0.1.1")
}
}
apply(plugin = "swehacker.plantuml")
Using the plugins DSL:
plugins {
id "swehacker.plantuml" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "swehacker.gradle.plugin.plantuml:plantuml-generator:0.1.1"
}
}
apply plugin: "swehacker.plantuml"