Search Gradle plugins

swehacker.plantuml

Generates UML diagrams that can be used with documentation tools like asciidoctor.

https://www.swehacker.com

Sources: https://github.com/swehacker/gradle-plantuml

Version 0.1.1 (latest)

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"

Learn how to apply plugins to subprojects