Setting Parameters in the Command-Line Scripts
If you start Oxygen XML with a command-line script (oxygen.bat/oxygen.sh oxygenAuthor.bat/oxygenAuthor.sh oxygenDeveloper.bat/oxygenDeveloper.shoxygenJSONEditor.bat/oxygenJSONEditor.sh syncroSVNClient.bat/syncroSVNClient.sh), you have to add or modify parameters in the java command at the end of the script.
For example, to set the maximum amount of Java memory to 2 GB in Windows, add the -Xmx parameter to the last line of the .bat file like this:
%OXYGEN_JAVA% -Xmx2g -Dsun.java2d.noddraw=true ...
On
macOS/Linux, add the -Xmx parameter (followed by a '\') to a new line
just above the ro.sync.exml.Oxygen\
line (at approximately line 100) in the
.bat file like this:
-cp "$CP"\
-Xmx2g\
ro.sync.exml.Oxygen\
..