-
Notifications
You must be signed in to change notification settings - Fork 0
How to debug the Corese plugin?
Erwan Demairy edited this page Jul 16, 2019
·
2 revisions
To launch the Protégé application in debugging mode, the jvm must be launched
- On MacOSx:
- Find the $PROTEGE_ROOT/Contents/Info.plist file;
- In the
<key>JVMOptions</key>
value, add the two following arguments:-
<string>-Xrunjdwp:server=y,transport=dt_socket,address=8000,suspend=n</string>
. <string>-Xdebug</string>
-
- For more details on JDWP, please refer to https://docs.oracle.com/javase/8/docs/technotes/guides/troubleshoot/introclientissues005.html
- The result should be similar to:
...
<key>JVMVersion</key>
<string>1.8+</string>
<key>JVMOptions</key>
<array>
<string>-Xrunjdwp:server=y,transport=dt_socket,address=8000,suspend=n</string>
<string>-Xdebug</string>
...
</array>
<key>JVMArguments</key>
...