Search This Blog

Showing posts with label PlantUML. Show all posts
Showing posts with label PlantUML. Show all posts

Thursday, January 10, 2019

PlantUML jar command cannot be run

Error: PlantUML jar command cannot be run 

SOLUTION

You need these things to run PlantUML:

Thursday, September 1, 2016

Include file PlantUml in rst file

PlantUml > Include file

PersonList.rst

@startuml
!include Person.iuml
Person <|.. PersonList
@enduml

Person.iuml

interface Person
Person: int age()
Person: string name()






Wednesday, June 29, 2016

PlantUML Set ForeColor and BackColor

PlantUML > Set ForeColor and BackColor


Font Color in Participants 


This example will set font color to white and background color to some custom color.

participant "<color:#white>Setup" as Setup #FD9A00