Search Gradle plugins

Renders *.kuml.kts diagrams (UML & C4) to SVG/PNG, generates code (Kotlin/Java/SQL) and validates OCL constraints from the Gradle build.

https://kuml.dev

Sources: https://github.com/kuml-dev/kUML

Version 0.35.0

Created 14 July 2026.

Renders *.kuml.kts diagrams (UML & C4) to SVG/PNG, generates code (Kotlin/Java/SQL) and validates OCL constraints from the Gradle build.

Add this plugin to your build using the plugins DSL:

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