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.0.2

Created 10 June 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/).

Using the plugins DSL:

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

Using legacy plugin application:

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

apply(plugin = "com.cosminpolifronie.gradle.plantuml")

Using the plugins DSL:

plugins {
  id "com.cosminpolifronie.gradle.plantuml" version "1.0.2"
}

Using legacy plugin application:

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

apply plugin: "com.cosminpolifronie.gradle.plantuml"

Learn how to apply plugins to subprojects