Search Gradle plugins

de.gafertp.plantuml

A very 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/codecholeric/gradle-plantuml-plugin

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

Version 2.0.0

Created 03 March 2019.

A very 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("de.gafertp.plantuml") version "2.0.0"
}

Using legacy plugin application:

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

apply(plugin = "de.gafertp.plantuml")

Using the plugins DSL:

plugins {
  id "de.gafertp.plantuml" version "2.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.gafertp.plantuml:gradle-plantuml-plugin:2.0.0"
  }
}

apply plugin: "de.gafertp.plantuml"

Learn how to apply plugins to subprojects