Search Gradle plugins

Version 1.0.0 (latest)

Created 10 May 2020.

A Gradle plugin to export module dependency graph as PlantUML style text.

Add this plugin to your build using the plugins DSL:

plugins {
  id("ms.ralph.gradle.dependency-plantuml-exporter") version "1.0.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("ms.ralph.gradle.dependency-plantuml-exporter:ms.ralph.gradle.dependency-plantuml-exporter.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ms.ralph.gradle.dependency-plantuml-exporter")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ms.ralph.gradle.dependency-plantuml-exporter:ms.ralph.gradle.dependency-plantuml-exporter.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "ms.ralph.gradle.dependency-plantuml-exporter")
  • Applying plugins to all subprojects .