There are two ways to install Eclipse plug-ins before
1 Direct Copy plugin to features/plugins directory
2 Create a linked file under the links directory.
and Eclipse 3.5 introduces another new way to install it, and it's more flexible.
Eclipse 3.5 has a dropins directory, as long as the plug-in into the directory can be loaded, there are several formats to choose from.
1. In the simplest, put the jar package directly into the Dropins directory:
eclipse/
dropins/
Net.sf.jadclipse_3.3.0.jar
2. Traditional format, unified into an Eclipse directory:
eclipse/
dropins/
eclipse/
features/
plugins/
3. Differentiate by plug-in name:
eclipse/
dropins/
jad/
features/
plugins/
m2eclipse/
features/
plugins/
4. Add links similar to Links:
eclipse/
dropins/
M2eclipse.link
The contents are as follows: Path=/home/software/ide/eclipse-plugins/m2eclipse
Where the structure of the M2eclipse directory is
eclipse/
plugins/
If you install only one eclipse, it is recommended that you use a third one, with a fourth installation of multiple eclipse.
Note: If you find that you have installed a plugin but have no effect, you can remove \configuration\org.eclipse.update from the Eclipse home directory, and then, in the command line mode, go to the Eclipse root directory (the directory where Eclipse.exe is located) The "Eclipse–clean" command to start the Eclipse,clean command tells Eclipse to re-search and load all plug-in information.
Eclipse 3.5 Plug-in installation method using Dropins