I'm working on NetBeans 8.0.2 IDE platform, Ubuntu 15.0.4. How to uninstall or disable JRebel?
4 Answers

- 5,769
- 1
- 46
- 43
-
Worked perfectly. Thanks! – Zael Oct 17 '16 at 11:30
-
2Yes, if you check the 'Show Details' option you don't have to uninstall all `User Installed Plugins`, you can uninstall the specific JRebel one. Otherwise (the "gotcha") it looks like you have to uninstall all `User Installed Plugins`. – Webel IT Australia - upvoter Aug 01 '18 at 00:03
General Case :- The user wants to uninstall a few plugins from the IDE.
To do it, the user opens the Plugin manager and in the Installed tab she checks the check boxes for plugins (s)he wants to uninstall. The plugin manager informs the use that restart will be required. (s)he clicks the Uninstall button and a wizard pops up informing the user again that the IDE will be restarted. In the wizard the user clicks the Uninstall button and the IDE is restarted and plugins are uninstalled.
You can do the same individually for JRebel plugin and restart the NetBeans IDE.
Check this Netbeans Wiki page for more info on plugin uninstallation.

- 18,735
- 7
- 49
- 73
-
-
@T.Popović-Then please check the ''Downloaded'' tab in your plugin manager, and repeat the same my dear. Do let me know whether it was solved! And if solved, please accept the answer. – Am_I_Helpful Jul 22 '15 at 16:19
After exploring some time I found the solution. Actually the solution disables the JRebel. In the folder: ~/.netbeans/8.0.2/config/Modules there is a file org-zeroturnaround-jrebel-netbeans.xml. You need to change the file as follows.
The file before disabling JRebel is:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//NetBeans//DTD Module Status 1.0//EN"
"http://www.netbeans.org/dtds/module-status-1_0.dtd">
<module name="org.zeroturnaround.jrebel.netbeans">
<param name="autoload">false</param>
<param name="eager">false</param>
<param name="enabled">true</param>
<param name="jar">modules/org-zeroturnaround-netbeans.jar</param>
<param name="reloadable">false</param>
</module>
And file after disabling JRabel:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//NetBeans//DTD Module Status 1.0//EN"
"http://www.netbeans.org/dtds/module-status-1_0.dtd">
<module name="org.zeroturnaround.jrebel.netbeans">
<param name="autoload">false</param>
<param name="eager">false</param>
<param name="enabled">false</param>
<param name="jar">modules/org-zeroturnaround-netbeans.jar</param>
<param name="reloadable">false</param>
</module>

- 245
- 3
- 12
Simply follow these steps:
- Go to Netbeans plugin manager. (Menu--> Tools --> Plugins)
- Select the tab named "Installed".
- Tick the plugin named "User Installed Plugins".
- Read the description in the right hand side and understand what user plugins are included under that name. Netbeans Plugins
- Uninstall the plugin named "User Installed Plugins".
- Restart IDE.
- Reinstall plugins you really needed in "User Installed Plugins".

- 91
- 1
- 5
-
2If you check the 'Show Details' option you don't have to uninstall all User Installed Plugins (and then reinstall desired ones), you can uninstall specific ones ! – Webel IT Australia - upvoter Aug 01 '18 at 00:01