Skip to content

Instantly share code, notes, and snippets.

@sklinkert
Created September 30, 2020 09:06
Show Gist options
  • Save sklinkert/bd43471342361e3270435bf82dfadb4e to your computer and use it in GitHub Desktop.
Save sklinkert/bd43471342361e3270435bf82dfadb4e to your computer and use it in GitHub Desktop.
PlantUML with Gradle (Kotlin, .kts)
plugins {
id("com.cosminpolifronie.gradle.plantuml") version "1.6.0"
}
// ...
configure<com.cosminpolifronie.gradle.plantuml.PlantUmlPluginExtension> {
receivedRenders.add(
com.cosminpolifronie.gradle.plantuml.PlantUmlReceivedRender(
"docs/diagrams/src/*.puml",
"./docs/diagrams",
"png"
)
)
}
// run 'gradle plantuml' to generate diagrams
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment