Skip to content

Commit

Permalink
cleanup plantuml example
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgrefer committed Jun 17, 2022
1 parent 4ef883c commit 063e9c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 0 additions & 2 deletions examples/plantuml/.gitignore

This file was deleted.

12 changes: 6 additions & 6 deletions examples/plantuml/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ plugins {

plantUml {
fileFormat = "PNG"
outputDirectory = file("dist")
outputDirectory = layout.buildDirectory.dir("dist")
}

tasks.register("plantUml2", PlantumlTask) {
it.source("src/plantuml2")
it.includePattern = "**/*.tuml"
it.fileFormat = "SVG"
it.outputDirectory = file("dist2")
}
source("src/plantuml2")
includePattern = "**/*.tuml"
fileFormat = "SVG"
outputDirectory = layout.buildDirectory.dir("dist2")
}

0 comments on commit 063e9c9

Please sign in to comment.