Removing or Disabling JRebel from NetBeans 8.0.2 on Ubuntu 15.04

I am working on NetBeans IDE 8.0.2, Ubuntu 15.0.4. How do I remove or disable JRebel?

+3


source to share


4 answers


General case: - User wants to remove multiple plugins from the IDE.

To do this, the user opens the Plugin Manager, and on the Installed tab, she checks the checkboxes for the modules (modules) that he wants to remove. The plugin manager reports that a reboot is required. he clicks the delete button and a wizard pops up informing the user again that the IDE will restart. In the wizard, the user clicks the Remove button and the IDE restarts and the plugins are removed.

You can do the same separately for the JRebel plugin and restart NetBeans IDE.



enter image description here

enter image description here

Check this Netbeans Wiki page for more information on uninstalling plugins.

+4


source


For Netbean 8.0.2

Tools -> Plugins -> Installed (Check Show details)



Plugin tabs

+3


source


Just follow these steps:

  • Go to Netbeans Plugin Manager. (Menu -> Tools -> Plugins)
  • Select the tab named "Installed".
  • Check the plugin named "User Installed Plugins".
  • Read the description on the right side and find out which user plugins are enabled under that name. Netbeans plugins
  • Remove the plugin named "User Installed Plugins".
  • Restart IDE.
  • Reinstall plugins that you really need in "User Installed Plugins".
+2


source


After studying for some time, I found a solution. Actually the solution turns off JRebel. In the folder: ~ / .netbeans / 8.0.2 / config / Modules there is a file org-zeroturnaround-jrebel-netbeans.xml. You need to modify the file as follows.

File before disabling JRebel:

<?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 the file after disabling the 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>

      

+1


source







All Articles