ms.ralph.gradle.dependency-plantuml-exporter
Owner: Tamaki Hidetsugu
A Gradle plugin to export module dependency graph as PlantUML style text.
https://github.com/r-ralph/gradle-dependency-plantuml-exporter-plugin
Sources: https://github.com/r-ralph/gradle-dependency-plantuml-exporter-plugin.git
Version 1.0.0 (latest)
1.0.0
Created 10 May 2020.
A Gradle plugin to export module dependency graph as PlantUML style text.
Using the plugins DSL:
plugins {
id("ms.ralph.gradle.dependency-plantuml-exporter") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.ms.ralph.gradle:gradle-dependency-plantuml-exporter-plugin:1.0.0")
}
}
apply(plugin = "ms.ralph.gradle.dependency-plantuml-exporter")
Using the plugins DSL:
plugins {
id "ms.ralph.gradle.dependency-plantuml-exporter" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.ms.ralph.gradle:gradle-dependency-plantuml-exporter-plugin:1.0.0"
}
}
apply plugin: "ms.ralph.gradle.dependency-plantuml-exporter"