Search Gradle plugins

com.cosminpolifronie.gradle.plantuml

A simple plugin to render PlantUML files. Takes a set of diagram files together with desired output files / formats and renders them with PlantUML (http://plantuml.com/).

https://github.com/cosminpolifronie/gradle-plantuml-plugin

Sources: https://github.com/cosminpolifronie/gradle-plantuml-plugin

Version 1.6.0 (latest)

Created 01 July 2019.

A simple plugin to render PlantUML files. Takes a set of diagram files together with desired output files / formats and renders them with PlantUML (http://plantuml.com/).

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.cosminpolifronie.gradle.plantuml") version "1.6.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.cosminpolifronie.gradle.plantuml:com.cosminpolifronie.gradle.plantuml.gradle.plugin:1.6.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.cosminpolifronie.gradle.plantuml")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.cosminpolifronie.gradle.plantuml:com.cosminpolifronie.gradle.plantuml.gradle.plugin:1.6.0")
      }
    }
    
    apply(plugin = "com.cosminpolifronie.gradle.plantuml")
  • Applying plugins to all subprojects .