Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion bazel/rules/rules_score/templates/conf.template.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@
f"Could not find plantuml binary via runfiles lookup. Searched: {searched}."
)

plantuml = str(plantuml_path)
# Use PlantUML's built-in Smetana layout engine (Java port of Graphviz).
# This avoids requiring an external dot binary in the Bazel sandbox.
plantuml = f"{plantuml_path} -Playout=smetana"
plantuml_output_format = "svg_obj"

# HTML theme
Expand Down
Loading