Removing the MTJ plug-in
Obviously we hope that you find MTJ so useful that you will never want to be without it. If you really feel you need to remove it, however, or if you want to do a completely "clean" install, you can follow these steps to remove MTJ from your Eclipse installation:
The most straightforward way to remove MTJ is to use Eclipse's configuration management.
From the Eclipse Help menu, select Software Updates and then Manage Configuration...
You will be presented with the following dialog:

Expand the entry in the left pane for your Eclipse installation
directory and click on the entry for MTJ.
At this point, the dialog should look something like this:

Click on the Uninstall link in the
right pane.
Eclipse will ask you to confirm that you want to uninstall MTJ. Answer "Yes", and MTJ will be removed. Note that Eclipse will have to restart the workbench after the uninstall so that it can update its feature and plugin metadata.
If you have chosen to install the preprocessor support using the instructions, Eclipse will not remove the hooks necessary for the preprocessor. To uninstall, the preprocessor hooks:
osgi.framework.extensions=org.eclipse.mtj.core.hooks If you have any of the optional MTJ features (such as the Siemens feature) installed, Eclipse will require that you uninstall them before uninstalling MTJ itself. In this case, it is OK not to restart the workbench between uninstalling the feature and uninstalling MTJ itself.
Note that removing MTJ using this technique will remove the current version of the MTJ feature and plugins from your Eclipse installation directory. If you updated MTJ from an older version, the plugin and feature directories for the older versions will still be present inside your Eclipse directory. If you really want to remove all vestiges of MTJ, you can get rid of those directories using the "Brute Force" method below.
If the "Normal" method doesn't work, or if you want to make absolutely sure that everything is gone, you can always remove MTJ the "brute force" way:
If you have chosen to install the preprocessor support using the instructions, Eclipse will not remove the hooks necessary for the preprocessor. To uninstall, the preprocessor hooks:
osgi.framework.extensions=org.eclipse.mtj.core.hooks If you want to remove all traces of MTJ from a project, you need to do the following from outside Eclipse:
<xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>PaperClick Java Go Window</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.mtj.core.preverifier</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.mtj.core.nature</nature> </natures> </projectDescription>