Search Gradle plugins

tech.kocel.yapgp

Converts PlantUML .puml files to one of the supported output formats - svg, png, txt. It sends the .puml file to the PlantUML server and saves the result.

https://github.com/kkocel/yapgp

Sources: https://github.com/kkocel/yapgp.git

Version 0.1.2 (latest)

Created 23 April 2024.

Converts PlantUML .puml files to one of the supported output formats - svg, png, txt. It sends the .puml file to the PlantUML server and saves the result.

Using the plugins DSL:

plugins {
  id("tech.kocel.yapgp") version "0.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("tech.kocel:yapgp:0.1.2")
  }
}

apply(plugin = "tech.kocel.yapgp")

Using the plugins DSL:

plugins {
  id "tech.kocel.yapgp" version "0.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "tech.kocel:yapgp:0.1.2"
  }
}

apply plugin: "tech.kocel.yapgp"

Learn how to apply plugins to subprojects