Search Gradle plugins

Version 2.0.1

Created 02 January 2023.

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.0.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects