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

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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("tech.kocel.yapgp:tech.kocel.yapgp.gradle.plugin:0.1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("tech.kocel.yapgp")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("tech.kocel.yapgp:tech.kocel.yapgp.gradle.plugin:0.1.0")
      }
    }
    
    apply(plugin = "tech.kocel.yapgp")
  • Applying plugins to all subprojects .