Multiple include directories

0 votes
asked Sep 7, 2014 in Wanted features by albert (3,520 points)
In case I use the !include directive I can use:

    java -Dplantuml.include.path="c:/mydir" -jar plantuml.jar atest1.txt

 

to specify the include directory to search for the included file(s).

In large projects these files can be distributed over a number of directories:

- how can I specify multiple directories

- is it possible to specify a relative path

1 Answer

+2 votes
answered Sep 7, 2014 by albert (3,520 points)
After some searches in the source code I found (with the little Java knowledge I have) that the include path can consist of multiple parts separated by either a ';' (Windows) or a ':' (*nix).

It is also possible to specify relative paths.

 

Remains, would be nice to have this documented.
commented Apr 8, 2019 by adam (100 points)
Thanks, it's really helped. Why is this not documented yet?
...