io.kristiansen.gradle.PlantUMLPlugin
Owner: Morten Kristiansen
Demo plugin to use as a starting point for custom plugin development
https://github.com/mkristiansen/gradle-plantuml-mk-plugin
Sources: scm:git@github.com:mkristiansen/gradle-plantuml-mk-pluginp.git
Version 0.0.1 (latest)
0.0.1
Created 01 December 2017.
Gradle plugin to render ASCII PlantUML files into images
Using the plugins DSL:
plugins {
id("io.kristiansen.gradle.PlantUMLPlugin") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.kristiansen.gradle:gradle-plantuml-mk-plugin:0.0.1")
}
}
apply(plugin = "io.kristiansen.gradle.PlantUMLPlugin")
Using the plugins DSL:
plugins {
id "io.kristiansen.gradle.PlantUMLPlugin" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.kristiansen.gradle:gradle-plantuml-mk-plugin:0.0.1"
}
}
apply plugin: "io.kristiansen.gradle.PlantUMLPlugin"