Search Gradle plugins

Version 1.0.2 (latest)

Created 07 May 2020.

Gradle plugin to build PlantUML diagrams from code (for living and up-to-date documentation)

Using the plugins DSL:

plugins {
  id("com.github.roroche.plantuml") version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.roroche:plantuml-gradle-plugin:1.0.2")
  }
}

apply(plugin = "com.github.roroche.plantuml")

Using the plugins DSL:

plugins {
  id "com.github.roroche.plantuml" version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.roroche:plantuml-gradle-plugin:1.0.2"
  }
}

apply plugin: "com.github.roroche.plantuml"

Learn how to apply plugins to subprojects