I have recently realized that using a local plantuml.jar file to generate Class diagram gives different result than using the online plantuml tool.
Local versions:
- plantuml 1.2020.21
- graphviz 2.30.1
Sample code:
together {
class aaa
class bbb
class ccc
}
aaa - bbb
bbb - ccc
The result for the online tool is three horizontally aligned classes. This is the expected behavior.
The result for the local tool is three vertically aligned classes.
I am not sure if that is a bug but pretty annoying. It seems the local plantuml.jar cannot recognize the "together" keyword and we have to use the online version. If I missed something or there is a configuration option to make it work properly please let me know.