Reputation: 345
I'm working on NetBeans 8.0.2 IDE platform, Ubuntu 15.0.4. How to uninstall or disable JRebel?
Upvotes: 4
Views: 6195
Reputation: 6245
For Netbean 8.0.2
Tools --> Plugins --> Installed (Check Show details)
Upvotes: 8
Reputation: 91
Simply follow these steps:
Upvotes: 1
Reputation: 19168
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.
Upvotes: 4
Reputation: 345
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>
Upvotes: 1