How to hide the plantuml banner

0 votes
asked Feb 15, 2016 in Closed question / help by majkinetor (260 points)

Each time I call this command via Powershell I get the banner (plnauml icon on the screen middle)

java -jar c:\tools\plantuml\plantuml.jar -charset UTF-8 -tsvg $pwd\* -o svg

Aplication focus is stolen while plantuml is working too. This makes it very unproductive to work in my editor as it rebuilds svg's using above command as soon as I save. Focus stealing makes me unable to continue typing few seconds after the save.

How to disable it ? I don't see anything in the command line options.

1 Answer

0 votes
answered Feb 15, 2016 by plantuml (295,000 points)

See http://plantuml.sourceforge.net/qa/?qa=3822/splash-screen-when-running

You can use -splash:no option flags. For example, :

java -splash:no -jar plantuml.jar -version

will not display the logo.

...