tech.kocel.yapgp
Owner: Christopher Kocel
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.3 (latest)
0.1.3
Created 23 May 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.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("tech.kocel:yapgp:0.1.3")
}
}
apply(plugin = "tech.kocel.yapgp")
Using the plugins DSL:
plugins {
id "tech.kocel.yapgp" version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "tech.kocel:yapgp:0.1.3"
}
}
apply plugin: "tech.kocel.yapgp"