Created
September 30, 2020 09:06
-
-
Save sklinkert/bd43471342361e3270435bf82dfadb4e to your computer and use it in GitHub Desktop.
PlantUML with Gradle (Kotlin, .kts)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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