Search Gradle plugins

Version 2.1.7 (latest)

Created 06 March 2024.

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

Using the plugins DSL:

plugins {
  id("io.gitlab.plunts.plantuml") version "2.1.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.gitlab.plunts:plantuml-gradle-plugin:2.1.7")
  }
}

apply(plugin = "io.gitlab.plunts.plantuml")

Using the plugins DSL:

plugins {
  id "io.gitlab.plunts.plantuml" version "2.1.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.gitlab.plunts:plantuml-gradle-plugin:2.1.7"
  }
}

apply plugin: "io.gitlab.plunts.plantuml"

Learn how to apply plugins to subprojects