Search Gradle plugins

Version 0.1.0

Created 02 October 2021.

A plugin to convert PlantUML .puml files to one of the supported output formats

Using the plugins DSL:

plugins {
  id("io.github.redgreencoding.plantuml") version "0.1.0"
}

Using legacy plugin application:

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

apply(plugin = "io.github.redgreencoding.plantuml")

Using the plugins DSL:

plugins {
  id "io.github.redgreencoding.plantuml" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.redgreencoding:plantuml-gradle-plugin:0.1.0"
  }
}

apply plugin: "io.github.redgreencoding.plantuml"

Learn how to apply plugins to subprojects